home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / i686-linux-thread-multi / Config.pod < prev    next >
Text File  |  2006-04-25  |  210KB  |  8,157 lines

  1. =head1 NAME
  2.  
  3. Config - access Perl configuration information
  4.  
  5. =head1 SYNOPSIS
  6.  
  7.     use Config;
  8.     if ($Config{usethreads}) {
  9.     print "has thread support\n"
  10.     } 
  11.  
  12.     use Config qw(myconfig config_sh config_vars config_re);
  13.  
  14.     print myconfig();
  15.  
  16.     print config_sh();
  17.  
  18.     print config_re();
  19.  
  20.     config_vars(qw(osname archname));
  21.  
  22.  
  23. =head1 DESCRIPTION
  24.  
  25. The Config module contains all the information that was available to
  26. the C<Configure> program at Perl build time (over 900 values).
  27.  
  28. Shell variables from the F<config.sh> file (written by Configure) are
  29. stored in the readonly-variable C<%Config>, indexed by their names.
  30.  
  31. Values stored in config.sh as 'undef' are returned as undefined
  32. values.  The perl C<exists> function can be used to check if a
  33. named variable exists.
  34.  
  35. =over 4
  36.  
  37. =item myconfig()
  38.  
  39. Returns a textual summary of the major perl configuration values.
  40. See also C<-V> in L<perlrun/Switches>.
  41.  
  42. =item config_sh()
  43.  
  44. Returns the entire perl configuration information in the form of the
  45. original config.sh shell variable assignment script.
  46.  
  47. =item config_re($regex)
  48.  
  49. Like config_sh() but returns, as a list, only the config entries who's
  50. names match the $regex.
  51.  
  52. =item config_vars(@names)
  53.  
  54. Prints to STDOUT the values of the named configuration variable. Each is
  55. printed on a separate line in the form:
  56.  
  57.   name='value';
  58.  
  59. Names which are unknown are output as C<name='UNKNOWN';>.
  60. See also C<-V:name> in L<perlrun/Switches>.
  61.  
  62. =back
  63.  
  64. =head1 EXAMPLE
  65.  
  66. Here's a more sophisticated example of using %Config:
  67.  
  68.     use Config;
  69.     use strict;
  70.  
  71.     my %sig_num;
  72.     my @sig_name;
  73.     unless($Config{sig_name} && $Config{sig_num}) {
  74.     die "No sigs?";
  75.     } else {
  76.     my @names = split ' ', $Config{sig_name};
  77.     @sig_num{@names} = split ' ', $Config{sig_num};
  78.     foreach (@names) {
  79.         $sig_name[$sig_num{$_}] ||= $_;
  80.     }   
  81.     }
  82.  
  83.     print "signal #17 = $sig_name[17]\n";
  84.     if ($sig_num{ALRM}) { 
  85.     print "SIGALRM is $sig_num{ALRM}\n";
  86.     }   
  87.  
  88. =head1 WARNING
  89.  
  90. Because this information is not stored within the perl executable
  91. itself it is possible (but unlikely) that the information does not
  92. relate to the actual perl binary which is being used to access it.
  93.  
  94. The Config module is installed into the architecture and version
  95. specific library directory ($Config{installarchlib}) and it checks the
  96. perl version number when loaded.
  97.  
  98. The values stored in config.sh may be either single-quoted or
  99. double-quoted. Double-quoted strings are handy for those cases where you
  100. need to include escape sequences in the strings. To avoid runtime variable
  101. interpolation, any C<$> and C<@> characters are replaced by C<\$> and
  102. C<\@>, respectively. This isn't foolproof, of course, so don't embed C<\$>
  103. or C<\@> in double-quoted strings unless you're willing to deal with the
  104. consequences. (The slashes will end up escaped and the C<$> or C<@> will
  105. trigger variable interpolation)
  106.  
  107. =head1 GLOSSARY
  108.  
  109. Most C<Config> variables are determined by the C<Configure> script
  110. on platforms supported by it (which is most UNIX platforms).  Some
  111. platforms have custom-made C<Config> variables, and may thus not have
  112. some of the variables described below, or may have extraneous variables
  113. specific to that particular port.  See the port specific documentation
  114. in such cases.
  115.  
  116. =head2 _
  117.  
  118. =over 4
  119.  
  120. =item C<_a>
  121.  
  122. From F<Unix.U>:
  123.  
  124. This variable defines the extension used for ordinary library files.
  125. For unix, it is F<.a>.  The F<.> is included.  Other possible
  126. values include F<.lib>.
  127.  
  128. =item C<_exe>
  129.  
  130. From F<Unix.U>:
  131.  
  132. This variable defines the extension used for executable files.
  133. C<DJGPP>, Cygwin and F<OS/2> use F<.exe>.  Stratus C<VOS> uses F<.pm>.
  134. On operating systems which do not require a specific extension
  135. for executable files, this variable is empty.
  136.  
  137. =item C<_o>
  138.  
  139. From F<Unix.U>:
  140.  
  141. This variable defines the extension used for object files.
  142. For unix, it is F<.o>.  The F<.> is included.  Other possible
  143. values include F<.obj>.
  144.  
  145. =back
  146.  
  147. =head2 a
  148.  
  149. =over 4
  150.  
  151. =item C<afs>
  152.  
  153. From F<afs.U>:
  154.  
  155. This variable is set to C<true> if C<AFS> (Andrew File System) is used
  156. on the system, C<false> otherwise.  It is possible to override this
  157. with a hint value or command line option, but you'd better know
  158. what you are doing.
  159.  
  160. =item C<afsroot>
  161.  
  162. From F<afs.U>:
  163.  
  164. This variable is by default set to F</afs>. In the unlikely case
  165. this is not the correct root, it is possible to override this with
  166. a hint value or command line option.  This will be used in subsequent
  167. tests for AFSness in the Perl configure and test process. 
  168.  
  169. =item C<alignbytes>
  170.  
  171. From F<alignbytes.U>:
  172.  
  173. This variable holds the number of bytes required to align a
  174. double-- or a long double when applicable. Usual values are
  175. 2, 4 and 8.  The default is eight, for safety.
  176.  
  177. =item C<ansi2knr>
  178.  
  179. From F<ansi2knr.U>:
  180.  
  181. This variable is set if the user needs to run ansi2knr.  
  182. Currently, this is not supported, so we just abort.
  183.  
  184. =item C<aphostname>
  185.  
  186. From F<d_gethname.U>:
  187.  
  188. This variable contains the command which can be used to compute the
  189. host name. The command is fully qualified by its absolute path, to make
  190. it safe when used by a process with super-user privileges.
  191.  
  192. =item C<api_revision>
  193.  
  194. From F<patchlevel.U>:
  195.  
  196. The three variables, api_revision, api_version, and
  197. api_subversion, specify the version of the oldest perl binary
  198. compatible with the present perl.  In a full version string
  199. such as F<5.6.1>, api_revision is the C<5>.
  200. Prior to 5.5.640, the format was a floating point number,
  201. like 5.00563.
  202.  
  203. F<perl.c>:incpush() and F<lib/lib.pm> will automatically search in
  204. F<$sitelib/.>. for older directories back to the limit specified
  205. by these api_ variables.  This is only useful if you have a
  206. perl library directory tree structured like the default one.
  207. See C<INSTALL> for how this works.  The versioned site_perl
  208. directory was introduced in 5.005, so that is the lowest
  209. possible value.  The version list appropriate for the current
  210. system is determined in F<inc_version_list.U>.
  211.  
  212. C<XXX> To do:  Since compatibility can depend on compile time
  213. options (such as bincompat, longlong, etc.) it should
  214. (perhaps) be set by Configure, but currently it isn't.
  215. Currently, we read a hard-wired value from F<patchlevel.h>.
  216. Perhaps what we ought to do is take the hard-wired value from
  217. F<patchlevel.h> but then modify it if the current Configure
  218. options warrant.  F<patchlevel.h> then would use an #ifdef guard.
  219.  
  220. =item C<api_subversion>
  221.  
  222. From F<patchlevel.U>:
  223.  
  224. The three variables, api_revision, api_version, and
  225. api_subversion, specify the version of the oldest perl binary
  226. compatible with the present perl.  In a full version string
  227. such as F<5.6.1>, api_subversion is the C<1>.  See api_revision for
  228. full details.
  229.  
  230. =item C<api_version>
  231.  
  232. From F<patchlevel.U>:
  233.  
  234. The three variables, api_revision, api_version, and
  235. api_subversion, specify the version of the oldest perl binary
  236. compatible with the present perl.  In a full version string
  237. such as F<5.6.1>, api_version is the C<6>.  See api_revision for
  238. full details.  As a special case, 5.5.0 is rendered in the
  239. old-style as 5.005.  (In the 5.005_0x maintenance series,
  240. this was the only versioned directory in $sitelib.)
  241.  
  242. =item C<api_versionstring>
  243.  
  244. From F<patchlevel.U>:
  245.  
  246. This variable combines api_revision, api_version, and
  247. api_subversion in a format such as 5.6.1 (or 5_6_1) suitable
  248. for use as a directory name.  This is filesystem dependent.
  249.  
  250. =item C<ar>
  251.  
  252. From F<Loc.U>:
  253.  
  254. This variable is used internally by Configure to determine the
  255. full pathname (if any) of the ar program.  After Configure runs,
  256. the value is reset to a plain C<ar> and is not useful.
  257.  
  258. =item C<archlib>
  259.  
  260. From F<archlib.U>:
  261.  
  262. This variable holds the name of the directory in which the user wants
  263. to put architecture-dependent public library files for $package.
  264. It is most often a local directory such as F</usr/local/lib>.
  265. Programs using this variable must be prepared to deal
  266. with filename expansion.
  267.  
  268. =item C<archlibexp>
  269.  
  270. From F<archlib.U>:
  271.  
  272. This variable is the same as the archlib variable, but is
  273. filename expanded at configuration time, for convenient use.
  274.  
  275. =item C<archname64>
  276.  
  277. From F<use64bits.U>:
  278.  
  279. This variable is used for the 64-bitness part of $archname.
  280.  
  281. =item C<archname>
  282.  
  283. From F<archname.U>:
  284.  
  285. This variable is a short name to characterize the current
  286. architecture.  It is used mainly to construct the default archlib.
  287.  
  288. =item C<archobjs>
  289.  
  290. From F<Unix.U>:
  291.  
  292. This variable defines any additional objects that must be linked
  293. in with the program on this architecture.  On unix, it is usually
  294. empty.  It is typically used to include emulations of unix calls
  295. or other facilities.  For perl on F<OS/2>, for example, this would
  296. include F<os2/os2.obj>.
  297.  
  298. =item C<asctime_r_proto>
  299.  
  300. From F<d_asctime_r.U>:
  301.  
  302. This variable encodes the prototype of asctime_r.
  303. It is zero if d_asctime_r is undef, and one of the
  304. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_asctime_r
  305. is defined.
  306.  
  307. =item C<awk>
  308.  
  309. From F<Loc.U>:
  310.  
  311. This variable is used internally by Configure to determine the
  312. full pathname (if any) of the awk program.  After Configure runs,
  313. the value is reset to a plain C<awk> and is not useful.
  314.  
  315. =back
  316.  
  317. =head2 b
  318.  
  319. =over 4
  320.  
  321. =item C<baserev>
  322.  
  323. From F<baserev.U>:
  324.  
  325. The base revision level of this package, from the F<.package> file.
  326.  
  327. =item C<bash>
  328.  
  329. From F<Loc.U>:
  330.  
  331. This variable is defined but not used by Configure.
  332. The value is a plain '' and is not useful.
  333.  
  334. =item C<bin>
  335.  
  336. From F<bin.U>:
  337.  
  338. This variable holds the name of the directory in which the user wants
  339. to put publicly executable images for the package in question.  It
  340. is most often a local directory such as F</usr/local/bin>. Programs using
  341. this variable must be prepared to deal with F<~name> substitution.
  342.  
  343. =item C<binexp>
  344.  
  345. From F<bin.U>:
  346.  
  347. This is the same as the bin variable, but is filename expanded at
  348. configuration time, for use in your makefiles.
  349.  
  350. =item C<bison>
  351.  
  352. From F<Loc.U>:
  353.  
  354. This variable is used internally by Configure to determine the
  355. full pathname (if any) of the bison program.  After Configure runs,
  356. the value is reset to a plain C<bison> and is not useful.
  357.  
  358. =item C<byacc>
  359.  
  360. From F<Loc.U>:
  361.  
  362. This variable is used internally by Configure to determine the
  363. full pathname (if any) of the byacc program.  After Configure runs,
  364. the value is reset to a plain C<byacc> and is not useful.
  365.  
  366. =item C<byteorder>
  367.  
  368. From F<byteorder.U>:
  369.  
  370. This variable holds the byte order in a C<UV>. In the following,
  371. larger digits indicate more significance.  The variable byteorder
  372. is either 4321 on a big-endian machine, or 1234 on a little-endian,
  373. or 87654321 on a Cray ... or 3412 with weird order !
  374.  
  375. =back
  376.  
  377. =head2 c
  378.  
  379. =over 4
  380.  
  381. =item C<c>
  382.  
  383. From F<n.U>:
  384.  
  385. This variable contains the \c string if that is what causes the echo
  386. command to suppress newline.  Otherwise it is null.  Correct usage is
  387. $echo $n "prompt for a question: $c".
  388.  
  389. =item C<castflags>
  390.  
  391. From F<d_castneg.U>:
  392.  
  393. This variable contains a flag that precise difficulties the
  394. compiler has casting odd floating values to unsigned long:
  395. 0 = ok
  396. 1 = couldn't cast < 0
  397. 2 = couldn't cast >= 0x80000000
  398. 4 = couldn't cast in argument expression list
  399.  
  400. =item C<cat>
  401.  
  402. From F<Loc.U>:
  403.  
  404. This variable is used internally by Configure to determine the
  405. full pathname (if any) of the cat program.  After Configure runs,
  406. the value is reset to a plain C<cat> and is not useful.
  407.  
  408. =item C<cc>
  409.  
  410. From F<cc.U>:
  411.  
  412. This variable holds the name of a command to execute a C compiler which
  413. can resolve multiple global references that happen to have the same
  414. name.  Usual values are C<cc> and C<gcc>.
  415. Fervent C<ANSI> compilers may be called C<c89>.  C<AIX> has xlc.
  416.  
  417. =item C<cccdlflags>
  418.  
  419. From F<dlsrc.U>:
  420.  
  421. This variable contains any special flags that might need to be
  422. passed with C<cc -c> to compile modules to be used to create a shared
  423. library that will be used for dynamic loading.  For hpux, this
  424. should be +z.  It is up to the makefile to use it.
  425.  
  426. =item C<ccdlflags>
  427.  
  428. From F<dlsrc.U>:
  429.  
  430. This variable contains any special flags that might need to be
  431. passed to cc to link with a shared library for dynamic loading.
  432. It is up to the makefile to use it.  For sunos 4.1, it should
  433. be empty.
  434.  
  435. =item C<ccflags>
  436.  
  437. From F<ccflags.U>:
  438.  
  439. This variable contains any additional C compiler flags desired by
  440. the user.  It is up to the Makefile to use this.
  441.  
  442. =item C<ccflags_uselargefiles>
  443.  
  444. From F<uselfs.U>:
  445.  
  446. This variable contains the compiler flags needed by large file builds
  447. and added to ccflags by hints files.
  448.  
  449. =item C<ccname>
  450.  
  451. From F<Checkcc.U>:
  452.  
  453. This can set either by hints files or by Configure.  If using
  454. gcc, this is gcc, and if not, usually equal to cc, unimpressive, no?
  455. Some platforms, however, make good use of this by storing the
  456. flavor of the C compiler being used here.  For example if using
  457. the Sun WorkShop suite, ccname will be C<workshop>.
  458.  
  459. =item C<ccsymbols>
  460.  
  461. From F<Cppsym.U>:
  462.  
  463. The variable contains the symbols defined by the C compiler alone.
  464. The symbols defined by cpp or by cc when it calls cpp are not in
  465. this list, see cppsymbols and cppccsymbols.
  466. The list is a space-separated list of symbol=value tokens.
  467.  
  468. =item C<ccversion>
  469.  
  470. From F<Checkcc.U>:
  471.  
  472. This can set either by hints files or by Configure.  If using
  473. a (non-gcc) vendor cc, this variable may contain a version for
  474. the compiler.
  475.  
  476. =item C<cf_by>
  477.  
  478. From F<cf_who.U>:
  479.  
  480. Login name of the person who ran the Configure script and answered the
  481. questions. This is used to tag both F<config.sh> and F<config_h.SH>.
  482.  
  483. =item C<cf_email>
  484.  
  485. From F<cf_email.U>:
  486.  
  487. Electronic mail address of the person who ran Configure. This can be
  488. used by units that require the user's e-mail, like F<MailList.U>.
  489.  
  490. =item C<cf_time>
  491.  
  492. From F<cf_who.U>:
  493.  
  494. Holds the output of the C<date> command when the configuration file was
  495. produced. This is used to tag both F<config.sh> and F<config_h.SH>.
  496.  
  497. =item C<charsize>
  498.  
  499. From F<charsize.U>:
  500.  
  501. This variable contains the value of the C<CHARSIZE> symbol, which
  502. indicates to the C program how many bytes there are in a character.
  503.  
  504. =item C<chgrp>
  505.  
  506. From F<Loc.U>:
  507.  
  508. This variable is defined but not used by Configure.
  509. The value is a plain '' and is not useful.
  510.  
  511. =item C<chmod>
  512.  
  513. From F<Loc.U>:
  514.  
  515. This variable is used internally by Configure to determine the
  516. full pathname (if any) of the chmod program.  After Configure runs,
  517. the value is reset to a plain C<chmod> and is not useful.
  518.  
  519. =item C<chown>
  520.  
  521. From F<Loc.U>:
  522.  
  523. This variable is defined but not used by Configure.
  524. The value is a plain '' and is not useful.
  525.  
  526. =item C<clocktype>
  527.  
  528. From F<d_times.U>:
  529.  
  530. This variable holds the type returned by times(). It can be long,
  531. or clock_t on C<BSD> sites (in which case <sys/types.h> should be
  532. included).
  533.  
  534. =item C<comm>
  535.  
  536. From F<Loc.U>:
  537.  
  538. This variable is used internally by Configure to determine the
  539. full pathname (if any) of the comm program.  After Configure runs,
  540. the value is reset to a plain C<comm> and is not useful.
  541.  
  542. =item C<compress>
  543.  
  544. From F<Loc.U>:
  545.  
  546. This variable is defined but not used by Configure.
  547. The value is a plain '' and is not useful.
  548.  
  549. =item C<contains>
  550.  
  551. From F<contains.U>:
  552.  
  553. This variable holds the command to do a grep with a proper return
  554. status.  On most sane systems it is simply C<grep>.  On insane systems
  555. it is a grep followed by a cat followed by a test.  This variable
  556. is primarily for the use of other Configure units.
  557.  
  558. =item C<cp>
  559.  
  560. From F<Loc.U>:
  561.  
  562. This variable is used internally by Configure to determine the
  563. full pathname (if any) of the cp program.  After Configure runs,
  564. the value is reset to a plain C<cp> and is not useful.
  565.  
  566. =item C<cpio>
  567.  
  568. From F<Loc.U>:
  569.  
  570. This variable is defined but not used by Configure.
  571. The value is a plain '' and is not useful.
  572.  
  573. =item C<cpp>
  574.  
  575. From F<Loc.U>:
  576.  
  577. This variable is used internally by Configure to determine the
  578. full pathname (if any) of the cpp program.  After Configure runs,
  579. the value is reset to a plain C<cpp> and is not useful.
  580.  
  581. =item C<cpp_stuff>
  582.  
  583. From F<cpp_stuff.U>:
  584.  
  585. This variable contains an identification of the concatenation mechanism
  586. used by the C preprocessor.
  587.  
  588. =item C<cppccsymbols>
  589.  
  590. From F<Cppsym.U>:
  591.  
  592. The variable contains the symbols defined by the C compiler
  593. when it calls cpp.  The symbols defined by the cc alone or cpp
  594. alone are not in this list, see ccsymbols and cppsymbols.
  595. The list is a space-separated list of symbol=value tokens.
  596.  
  597. =item C<cppflags>
  598.  
  599. From F<ccflags.U>:
  600.  
  601. This variable holds the flags that will be passed to the C pre-
  602. processor. It is up to the Makefile to use it.
  603.  
  604. =item C<cpplast>
  605.  
  606. From F<cppstdin.U>:
  607.  
  608. This variable has the same functionality as cppminus, only it applies
  609. to cpprun and not cppstdin.
  610.  
  611. =item C<cppminus>
  612.  
  613. From F<cppstdin.U>:
  614.  
  615. This variable contains the second part of the string which will invoke
  616. the C preprocessor on the standard input and produce to standard
  617. output.  This variable will have the value C<-> if cppstdin needs
  618. a minus to specify standard input, otherwise the value is "".
  619.  
  620. =item C<cpprun>
  621.  
  622. From F<cppstdin.U>:
  623.  
  624. This variable contains the command which will invoke a C preprocessor
  625. on standard input and put the output to stdout. It is guaranteed not
  626. to be a wrapper and may be a null string if no preprocessor can be
  627. made directly available. This preprocessor might be different from the
  628. one used by the C compiler. Don't forget to append cpplast after the
  629. preprocessor options.
  630.  
  631. =item C<cppstdin>
  632.  
  633. From F<cppstdin.U>:
  634.  
  635. This variable contains the command which will invoke the C
  636. preprocessor on standard input and put the output to stdout.
  637. It is primarily used by other Configure units that ask about
  638. preprocessor symbols.
  639.  
  640. =item C<cppsymbols>
  641.  
  642. From F<Cppsym.U>:
  643.  
  644. The variable contains the symbols defined by the C preprocessor
  645. alone.  The symbols defined by cc or by cc when it calls cpp are
  646. not in this list, see ccsymbols and cppccsymbols.
  647. The list is a space-separated list of symbol=value tokens.
  648.  
  649. =item C<crypt_r_proto>
  650.  
  651. From F<d_crypt_r.U>:
  652.  
  653. This variable encodes the prototype of crypt_r.
  654. It is zero if d_crypt_r is undef, and one of the
  655. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_crypt_r
  656. is defined.
  657.  
  658. =item C<cryptlib>
  659.  
  660. From F<d_crypt.U>:
  661.  
  662. This variable holds -lcrypt or the path to a F<libcrypt.a> archive if
  663. the crypt() function is not defined in the standard C library. It is
  664. up to the Makefile to use this.
  665.  
  666. =item C<csh>
  667.  
  668. From F<Loc.U>:
  669.  
  670. This variable is used internally by Configure to determine the
  671. full pathname (if any) of the csh program.  After Configure runs,
  672. the value is reset to a plain C<csh> and is not useful.
  673.  
  674. =item C<ctermid_r_proto>
  675.  
  676. From F<d_ctermid_r.U>:
  677.  
  678. This variable encodes the prototype of ctermid_r.
  679. It is zero if d_ctermid_r is undef, and one of the
  680. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ctermid_r
  681. is defined.
  682.  
  683. =item C<ctime_r_proto>
  684.  
  685. From F<d_ctime_r.U>:
  686.  
  687. This variable encodes the prototype of ctime_r.
  688. It is zero if d_ctime_r is undef, and one of the
  689. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ctime_r
  690. is defined.
  691.  
  692. =back
  693.  
  694. =head2 d
  695.  
  696. =over 4
  697.  
  698. =item C<d__fwalk>
  699.  
  700. From F<d__fwalk.U>:
  701.  
  702. This variable conditionally defines C<HAS__FWALK> if _fwalk() is
  703. available to apply a function to all the file handles.
  704.  
  705. =item C<d_access>
  706.  
  707. From F<d_access.U>:
  708.  
  709. This variable conditionally defines C<HAS_ACCESS> if the access() system
  710. call is available to check for access permissions using real IDs.
  711.  
  712. =item C<d_accessx>
  713.  
  714. From F<d_accessx.U>:
  715.  
  716. This variable conditionally defines the C<HAS_ACCESSX> symbol, which
  717. indicates to the C program that the accessx() routine is available.
  718.  
  719. =item C<d_aintl>
  720.  
  721. From F<d_aintl.U>:
  722.  
  723. This variable conditionally defines the C<HAS_AINTL> symbol, which
  724. indicates to the C program that the aintl() routine is available.
  725. If copysignl is also present we can emulate modfl.
  726.  
  727. =item C<d_alarm>
  728.  
  729. From F<d_alarm.U>:
  730.  
  731. This variable conditionally defines the C<HAS_ALARM> symbol, which
  732. indicates to the C program that the alarm() routine is available.
  733.  
  734. =item C<d_archlib>
  735.  
  736. From F<archlib.U>:
  737.  
  738. This variable conditionally defines C<ARCHLIB> to hold the pathname
  739. of architecture-dependent library files for $package.  If
  740. $archlib is the same as $privlib, then this is set to undef.
  741.  
  742. =item C<d_asctime_r>
  743.  
  744. From F<d_asctime_r.U>:
  745.  
  746. This variable conditionally defines the C<HAS_ASCTIME_R> symbol,
  747. which indicates to the C program that the asctime_r()
  748. routine is available.
  749.  
  750. =item C<d_atolf>
  751.  
  752. From F<atolf.U>:
  753.  
  754. This variable conditionally defines the C<HAS_ATOLF> symbol, which
  755. indicates to the C program that the atolf() routine is available.
  756.  
  757. =item C<d_atoll>
  758.  
  759. From F<atoll.U>:
  760.  
  761. This variable conditionally defines the C<HAS_ATOLL> symbol, which
  762. indicates to the C program that the atoll() routine is available.
  763.  
  764. =item C<d_attribut>
  765.  
  766. From F<d_attribut.U>:
  767.  
  768. This variable conditionally defines C<HASATTRIBUTE>, which
  769. indicates the C compiler can check for function attributes,
  770. such as printf formats.
  771.  
  772. =item C<d_bcmp>
  773.  
  774. From F<d_bcmp.U>:
  775.  
  776. This variable conditionally defines the C<HAS_BCMP> symbol if
  777. the bcmp() routine is available to compare strings.
  778.  
  779. =item C<d_bcopy>
  780.  
  781. From F<d_bcopy.U>:
  782.  
  783. This variable conditionally defines the C<HAS_BCOPY> symbol if
  784. the bcopy() routine is available to copy strings.
  785.  
  786. =item C<d_bsd>
  787.  
  788. From F<Guess.U>:
  789.  
  790. This symbol conditionally defines the symbol C<BSD> when running on a
  791. C<BSD> system.
  792.  
  793. =item C<d_bsdgetpgrp>
  794.  
  795. From F<d_getpgrp.U>:
  796.  
  797. This variable conditionally defines C<USE_BSD_GETPGRP> if
  798. getpgrp needs one arguments whereas C<USG> one needs none.
  799.  
  800. =item C<d_bsdsetpgrp>
  801.  
  802. From F<d_setpgrp.U>:
  803.  
  804. This variable conditionally defines C<USE_BSD_SETPGRP> if
  805. setpgrp needs two arguments whereas C<USG> one needs none.
  806. See also d_setpgid for a C<POSIX> interface.
  807.  
  808. =item C<d_bzero>
  809.  
  810. From F<d_bzero.U>:
  811.  
  812. This variable conditionally defines the C<HAS_BZERO> symbol if
  813. the bzero() routine is available to set memory to 0.
  814.  
  815. =item C<d_casti32>
  816.  
  817. From F<d_casti32.U>:
  818.  
  819. This variable conditionally defines CASTI32, which indicates
  820. whether the C compiler can cast large floats to 32-bit ints.
  821.  
  822. =item C<d_castneg>
  823.  
  824. From F<d_castneg.U>:
  825.  
  826. This variable conditionally defines C<CASTNEG>, which indicates
  827. wether the C compiler can cast negative float to unsigned.
  828.  
  829. =item C<d_charvspr>
  830.  
  831. From F<d_vprintf.U>:
  832.  
  833. This variable conditionally defines C<CHARVSPRINTF> if this system
  834. has vsprintf returning type (char*).  The trend seems to be to
  835. declare it as "int vsprintf()".
  836.  
  837. =item C<d_chown>
  838.  
  839. From F<d_chown.U>:
  840.  
  841. This variable conditionally defines the C<HAS_CHOWN> symbol, which
  842. indicates to the C program that the chown() routine is available.
  843.  
  844. =item C<d_chroot>
  845.  
  846. From F<d_chroot.U>:
  847.  
  848. This variable conditionally defines the C<HAS_CHROOT> symbol, which
  849. indicates to the C program that the chroot() routine is available.
  850.  
  851. =item C<d_chsize>
  852.  
  853. From F<d_chsize.U>:
  854.  
  855. This variable conditionally defines the C<CHSIZE> symbol, which
  856. indicates to the C program that the chsize() routine is available
  857. to truncate files.  You might need a -lx to get this routine.
  858.  
  859. =item C<d_class>
  860.  
  861. From F<d_class.U>:
  862.  
  863. This variable conditionally defines the C<HAS_CLASS> symbol, which
  864. indicates to the C program that the class() routine is available.
  865.  
  866. =item C<d_closedir>
  867.  
  868. From F<d_closedir.U>:
  869.  
  870. This variable conditionally defines C<HAS_CLOSEDIR> if closedir() is
  871. available.
  872.  
  873. =item C<d_cmsghdr_s>
  874.  
  875. From F<d_cmsghdr_s.U>:
  876.  
  877. This variable conditionally defines the C<HAS_STRUCT_CMSGHDR> symbol,
  878. which indicates that the struct cmsghdr is supported.
  879.  
  880. =item C<d_const>
  881.  
  882. From F<d_const.U>:
  883.  
  884. This variable conditionally defines the C<HASCONST> symbol, which
  885. indicates to the C program that this C compiler knows about the
  886. const type.
  887.  
  888. =item C<d_copysignl>
  889.  
  890. From F<d_copysignl.U>:
  891.  
  892. This variable conditionally defines the C<HAS_COPYSIGNL> symbol, which
  893. indicates to the C program that the copysignl() routine is available.
  894. If aintl is also present we can emulate modfl.
  895.  
  896. =item C<d_crypt>
  897.  
  898. From F<d_crypt.U>:
  899.  
  900. This variable conditionally defines the C<CRYPT> symbol, which
  901. indicates to the C program that the crypt() routine is available
  902. to encrypt passwords and the like.
  903.  
  904. =item C<d_crypt_r>
  905.  
  906. From F<d_crypt_r.U>:
  907.  
  908. This variable conditionally defines the C<HAS_CRYPT_R> symbol,
  909. which indicates to the C program that the crypt_r()
  910. routine is available.
  911.  
  912. =item C<d_csh>
  913.  
  914. From F<d_csh.U>:
  915.  
  916. This variable conditionally defines the C<CSH> symbol, which
  917. indicates to the C program that the C-shell exists.
  918.  
  919. =item C<d_ctermid_r>
  920.  
  921. From F<d_ctermid_r.U>:
  922.  
  923. This variable conditionally defines the C<HAS_CTERMID_R> symbol,
  924. which indicates to the C program that the ctermid_r()
  925. routine is available.
  926.  
  927. =item C<d_ctime_r>
  928.  
  929. From F<d_ctime_r.U>:
  930.  
  931. This variable conditionally defines the C<HAS_CTIME_R> symbol,
  932. which indicates to the C program that the ctime_r()
  933. routine is available.
  934.  
  935. =item C<d_cuserid>
  936.  
  937. From F<d_cuserid.U>:
  938.  
  939. This variable conditionally defines the C<HAS_CUSERID> symbol, which
  940. indicates to the C program that the cuserid() routine is available
  941. to get character login names.
  942.  
  943. =item C<d_dbl_dig>
  944.  
  945. From F<d_dbl_dig.U>:
  946.  
  947. This variable conditionally defines d_dbl_dig if this system's
  948. header files provide C<DBL_DIG>, which is the number of significant
  949. digits in a double precision number.
  950.  
  951. =item C<d_dbminitproto>
  952.  
  953. From F<d_dbminitproto.U>:
  954.  
  955. This variable conditionally defines the C<HAS_DBMINIT_PROTO> symbol,
  956. which indicates to the C program that the system provides
  957. a prototype for the dbminit() function.  Otherwise, it is
  958. up to the program to supply one.
  959.  
  960. =item C<d_difftime>
  961.  
  962. From F<d_difftime.U>:
  963.  
  964. This variable conditionally defines the C<HAS_DIFFTIME> symbol, which
  965. indicates to the C program that the difftime() routine is available.
  966.  
  967. =item C<d_dirfd>
  968.  
  969. From F<d_dirfd.U>:
  970.  
  971. This variable conditionally defines the C<HAS_DIRFD> constant,
  972. which indicates to the C program that dirfd() is available
  973. to return the file descriptor of a directory stream.
  974.  
  975. =item C<d_dirnamlen>
  976.  
  977. From F<i_dirent.U>:
  978.  
  979. This variable conditionally defines C<DIRNAMLEN>, which indicates
  980. to the C program that the length of directory entry names is
  981. provided by a d_namelen field.
  982.  
  983. =item C<d_dlerror>
  984.  
  985. From F<d_dlerror.U>:
  986.  
  987. This variable conditionally defines the C<HAS_DLERROR> symbol, which
  988. indicates to the C program that the dlerror() routine is available.
  989.  
  990. =item C<d_dlopen>
  991.  
  992. From F<d_dlopen.U>:
  993.  
  994. This variable conditionally defines the C<HAS_DLOPEN> symbol, which
  995. indicates to the C program that the dlopen() routine is available.
  996.  
  997. =item C<d_dlsymun>
  998.  
  999. From F<d_dlsymun.U>:
  1000.  
  1001. This variable conditionally defines C<DLSYM_NEEDS_UNDERSCORE>, which
  1002. indicates that we need to prepend an underscore to the symbol
  1003. name before calling dlsym().
  1004.  
  1005. =item C<d_dosuid>
  1006.  
  1007. From F<d_dosuid.U>:
  1008.  
  1009. This variable conditionally defines the symbol C<DOSUID>, which
  1010. tells the C program that it should insert setuid emulation code
  1011. on hosts which have setuid #! scripts disabled.
  1012.  
  1013. =item C<d_drand48_r>
  1014.  
  1015. From F<d_drand48_r.U>:
  1016.  
  1017. This variable conditionally defines the HAS_DRAND48_R symbol,
  1018. which indicates to the C program that the drand48_r()
  1019. routine is available.
  1020.  
  1021. =item C<d_drand48proto>
  1022.  
  1023. From F<d_drand48proto.U>:
  1024.  
  1025. This variable conditionally defines the HAS_DRAND48_PROTO symbol,
  1026. which indicates to the C program that the system provides
  1027. a prototype for the drand48() function.  Otherwise, it is
  1028. up to the program to supply one.
  1029.  
  1030. =item C<d_dup2>
  1031.  
  1032. From F<d_dup2.U>:
  1033.  
  1034. This variable conditionally defines HAS_DUP2 if dup2() is
  1035. available to duplicate file descriptors.
  1036.  
  1037. =item C<d_eaccess>
  1038.  
  1039. From F<d_eaccess.U>:
  1040.  
  1041. This variable conditionally defines the C<HAS_EACCESS> symbol, which
  1042. indicates to the C program that the eaccess() routine is available.
  1043.  
  1044. =item C<d_endgrent>
  1045.  
  1046. From F<d_endgrent.U>:
  1047.  
  1048. This variable conditionally defines the C<HAS_ENDGRENT> symbol, which
  1049. indicates to the C program that the endgrent() routine is available
  1050. for sequential access of the group database.
  1051.  
  1052. =item C<d_endgrent_r>
  1053.  
  1054. From F<d_endgrent_r.U>:
  1055.  
  1056. This variable conditionally defines the C<HAS_ENDGRENT_R> symbol,
  1057. which indicates to the C program that the endgrent_r()
  1058. routine is available.
  1059.  
  1060. =item C<d_endhent>
  1061.  
  1062. From F<d_endhent.U>:
  1063.  
  1064. This variable conditionally defines C<HAS_ENDHOSTENT> if endhostent() is
  1065. available to close whatever was being used for host queries.
  1066.  
  1067. =item C<d_endhostent_r>
  1068.  
  1069. From F<d_endhostent_r.U>:
  1070.  
  1071. This variable conditionally defines the C<HAS_ENDHOSTENT_R> symbol,
  1072. which indicates to the C program that the endhostent_r()
  1073. routine is available.
  1074.  
  1075. =item C<d_endnent>
  1076.  
  1077. From F<d_endnent.U>:
  1078.  
  1079. This variable conditionally defines C<HAS_ENDNETENT> if endnetent() is
  1080. available to close whatever was being used for network queries.
  1081.  
  1082. =item C<d_endnetent_r>
  1083.  
  1084. From F<d_endnetent_r.U>:
  1085.  
  1086. This variable conditionally defines the C<HAS_ENDNETENT_R> symbol,
  1087. which indicates to the C program that the endnetent_r()
  1088. routine is available.
  1089.  
  1090. =item C<d_endpent>
  1091.  
  1092. From F<d_endpent.U>:
  1093.  
  1094. This variable conditionally defines C<HAS_ENDPROTOENT> if endprotoent() is
  1095. available to close whatever was being used for protocol queries.
  1096.  
  1097. =item C<d_endprotoent_r>
  1098.  
  1099. From F<d_endprotoent_r.U>:
  1100.  
  1101. This variable conditionally defines the C<HAS_ENDPROTOENT_R> symbol,
  1102. which indicates to the C program that the endprotoent_r()
  1103. routine is available.
  1104.  
  1105. =item C<d_endpwent>
  1106.  
  1107. From F<d_endpwent.U>:
  1108.  
  1109. This variable conditionally defines the C<HAS_ENDPWENT> symbol, which
  1110. indicates to the C program that the endpwent() routine is available
  1111. for sequential access of the passwd database.
  1112.  
  1113. =item C<d_endpwent_r>
  1114.  
  1115. From F<d_endpwent_r.U>:
  1116.  
  1117. This variable conditionally defines the C<HAS_ENDPWENT_R> symbol,
  1118. which indicates to the C program that the endpwent_r()
  1119. routine is available.
  1120.  
  1121. =item C<d_endsent>
  1122.  
  1123. From F<d_endsent.U>:
  1124.  
  1125. This variable conditionally defines C<HAS_ENDSERVENT> if endservent() is
  1126. available to close whatever was being used for service queries.
  1127.  
  1128. =item C<d_endservent_r>
  1129.  
  1130. From F<d_endservent_r.U>:
  1131.  
  1132. This variable conditionally defines the C<HAS_ENDSERVENT_R> symbol,
  1133. which indicates to the C program that the endservent_r()
  1134. routine is available.
  1135.  
  1136. =item C<d_eofnblk>
  1137.  
  1138. From F<nblock_io.U>:
  1139.  
  1140. This variable conditionally defines C<EOF_NONBLOCK> if C<EOF> can be seen
  1141. when reading from a non-blocking I/O source.
  1142.  
  1143. =item C<d_eunice>
  1144.  
  1145. From F<Guess.U>:
  1146.  
  1147. This variable conditionally defines the symbols C<EUNICE> and C<VAX>, which
  1148. alerts the C program that it must deal with ideosyncracies of C<VMS>.
  1149.  
  1150. =item C<d_faststdio>
  1151.  
  1152. From F<d_faststdio.U>:
  1153.  
  1154. This variable conditionally defines the C<HAS_FAST_STDIO> symbol,
  1155. which indicates to the C program that the "fast stdio" is available
  1156. to manipulate the stdio buffers directly.
  1157.  
  1158. =item C<d_fchdir>
  1159.  
  1160. From F<d_fchdir.U>:
  1161.  
  1162. This variable conditionally defines the C<HAS_FCHDIR> symbol, which
  1163. indicates to the C program that the fchdir() routine is available.
  1164.  
  1165. =item C<d_fchmod>
  1166.  
  1167. From F<d_fchmod.U>:
  1168.  
  1169. This variable conditionally defines the C<HAS_FCHMOD> symbol, which
  1170. indicates to the C program that the fchmod() routine is available
  1171. to change mode of opened files.
  1172.  
  1173. =item C<d_fchown>
  1174.  
  1175. From F<d_fchown.U>:
  1176.  
  1177. This variable conditionally defines the C<HAS_FCHOWN> symbol, which
  1178. indicates to the C program that the fchown() routine is available
  1179. to change ownership of opened files.
  1180.  
  1181. =item C<d_fcntl>
  1182.  
  1183. From F<d_fcntl.U>:
  1184.  
  1185. This variable conditionally defines the C<HAS_FCNTL> symbol, and indicates
  1186. whether the fcntl() function exists
  1187.  
  1188. =item C<d_fcntl_can_lock>
  1189.  
  1190. From F<d_fcntl_can_lock.U>:
  1191.  
  1192. This variable conditionally defines the C<FCNTL_CAN_LOCK> symbol
  1193. and indicates whether file locking with fcntl() works.
  1194.  
  1195. =item C<d_fd_macros>
  1196.  
  1197. From F<d_fd_set.U>:
  1198.  
  1199. This variable contains the eventual value of the C<HAS_FD_MACROS> symbol,
  1200. which indicates if your C compiler knows about the macros which
  1201. manipulate an fd_set.
  1202.  
  1203. =item C<d_fd_set>
  1204.  
  1205. From F<d_fd_set.U>:
  1206.  
  1207. This variable contains the eventual value of the C<HAS_FD_SET> symbol,
  1208. which indicates if your C compiler knows about the fd_set typedef.
  1209.  
  1210. =item C<d_fds_bits>
  1211.  
  1212. From F<d_fd_set.U>:
  1213.  
  1214. This variable contains the eventual value of the C<HAS_FDS_BITS> symbol,
  1215. which indicates if your fd_set typedef contains the fds_bits member.
  1216. If you have an fd_set typedef, but the dweebs who installed it did
  1217. a half-fast job and neglected to provide the macros to manipulate
  1218. an fd_set, C<HAS_FDS_BITS> will let us know how to fix the gaffe.
  1219.  
  1220. =item C<d_fgetpos>
  1221.  
  1222. From F<d_fgetpos.U>:
  1223.  
  1224. This variable conditionally defines C<HAS_FGETPOS> if fgetpos() is
  1225. available to get the file position indicator.
  1226.  
  1227. =item C<d_finite>
  1228.  
  1229. From F<d_finite.U>:
  1230.  
  1231. This variable conditionally defines the C<HAS_FINITE> symbol, which
  1232. indicates to the C program that the finite() routine is available.
  1233.  
  1234. =item C<d_finitel>
  1235.  
  1236. From F<d_finitel.U>:
  1237.  
  1238. This variable conditionally defines the C<HAS_FINITEL> symbol, which
  1239. indicates to the C program that the finitel() routine is available.
  1240.  
  1241. =item C<d_flexfnam>
  1242.  
  1243. From F<d_flexfnam.U>:
  1244.  
  1245. This variable conditionally defines the C<FLEXFILENAMES> symbol, which
  1246. indicates that the system supports filenames longer than 14 characters.
  1247.  
  1248. =item C<d_flock>
  1249.  
  1250. From F<d_flock.U>:
  1251.  
  1252. This variable conditionally defines C<HAS_FLOCK> if flock() is
  1253. available to do file locking.
  1254.  
  1255. =item C<d_flockproto>
  1256.  
  1257. From F<d_flockproto.U>:
  1258.  
  1259. This variable conditionally defines the C<HAS_FLOCK_PROTO> symbol,
  1260. which indicates to the C program that the system provides
  1261. a prototype for the flock() function.  Otherwise, it is
  1262. up to the program to supply one.
  1263.  
  1264. =item C<d_fork>
  1265.  
  1266. From F<d_fork.U>:
  1267.  
  1268. This variable conditionally defines the C<HAS_FORK> symbol, which
  1269. indicates to the C program that the fork() routine is available.
  1270.  
  1271. =item C<d_fp_class>
  1272.  
  1273. From F<d_fp_class.U>:
  1274.  
  1275. This variable conditionally defines the C<HAS_FP_CLASS> symbol, which
  1276. indicates to the C program that the fp_class() routine is available.
  1277.  
  1278. =item C<d_fpathconf>
  1279.  
  1280. From F<d_pathconf.U>:
  1281.  
  1282. This variable conditionally defines the C<HAS_FPATHCONF> symbol, which
  1283. indicates to the C program that the pathconf() routine is available
  1284. to determine file-system related limits and options associated
  1285. with a given open file descriptor.
  1286.  
  1287. =item C<d_fpclass>
  1288.  
  1289. From F<d_fpclass.U>:
  1290.  
  1291. This variable conditionally defines the C<HAS_FPCLASS> symbol, which
  1292. indicates to the C program that the fpclass() routine is available.
  1293.  
  1294. =item C<d_fpclassify>
  1295.  
  1296. From F<d_fpclassify.U>:
  1297.  
  1298. This variable conditionally defines the C<HAS_FPCLASSIFY> symbol, which
  1299. indicates to the C program that the fpclassify() routine is available.
  1300.  
  1301. =item C<d_fpclassl>
  1302.  
  1303. From F<d_fpclassl.U>:
  1304.  
  1305. This variable conditionally defines the C<HAS_FPCLASSL> symbol, which
  1306. indicates to the C program that the fpclassl() routine is available.
  1307.  
  1308. =item C<d_fpos64_t>
  1309.  
  1310. From F<d_fpos64_t.U>:
  1311.  
  1312. This symbol will be defined if the C compiler supports fpos64_t.
  1313.  
  1314. =item C<d_frexpl>
  1315.  
  1316. From F<d_frexpl.U>:
  1317.  
  1318. This variable conditionally defines the C<HAS_FREXPL> symbol, which
  1319. indicates to the C program that the frexpl() routine is available.
  1320.  
  1321. =item C<d_fs_data_s>
  1322.  
  1323. From F<d_fs_data_s.U>:
  1324.  
  1325. This variable conditionally defines the C<HAS_STRUCT_FS_DATA> symbol,
  1326. which indicates that the struct fs_data is supported.
  1327.  
  1328. =item C<d_fseeko>
  1329.  
  1330. From F<d_fseeko.U>:
  1331.  
  1332. This variable conditionally defines the C<HAS_FSEEKO> symbol, which
  1333. indicates to the C program that the fseeko() routine is available.
  1334.  
  1335. =item C<d_fsetpos>
  1336.  
  1337. From F<d_fsetpos.U>:
  1338.  
  1339. This variable conditionally defines C<HAS_FSETPOS> if fsetpos() is
  1340. available to set the file position indicator.
  1341.  
  1342. =item C<d_fstatfs>
  1343.  
  1344. From F<d_fstatfs.U>:
  1345.  
  1346. This variable conditionally defines the C<HAS_FSTATFS> symbol, which
  1347. indicates to the C program that the fstatfs() routine is available.
  1348.  
  1349. =item C<d_fstatvfs>
  1350.  
  1351. From F<d_statvfs.U>:
  1352.  
  1353. This variable conditionally defines the C<HAS_FSTATVFS> symbol, which
  1354. indicates to the C program that the fstatvfs() routine is available.
  1355.  
  1356. =item C<d_fsync>
  1357.  
  1358. From F<d_fsync.U>:
  1359.  
  1360. This variable conditionally defines the C<HAS_FSYNC> symbol, which
  1361. indicates to the C program that the fsync() routine is available.
  1362.  
  1363. =item C<d_ftello>
  1364.  
  1365. From F<d_ftello.U>:
  1366.  
  1367. This variable conditionally defines the C<HAS_FTELLO> symbol, which
  1368. indicates to the C program that the ftello() routine is available.
  1369.  
  1370. =item C<d_ftime>
  1371.  
  1372. From F<d_ftime.U>:
  1373.  
  1374. This variable conditionally defines the C<HAS_FTIME> symbol, which indicates
  1375. that the ftime() routine exists.  The ftime() routine is basically
  1376. a sub-second accuracy clock.
  1377.  
  1378. =item C<d_Gconvert>
  1379.  
  1380. From F<d_gconvert.U>:
  1381.  
  1382. This variable holds what Gconvert is defined as to convert
  1383. floating point numbers into strings.  By default, Configure
  1384. sets C<this> macro to use the first of gconvert, gcvt, or sprintf
  1385. that pass sprintf-%g-like behaviour tests.  If perl is using
  1386. long doubles, the macro uses the first of the following
  1387. functions that pass Configure's tests: qgcvt, sprintf (if
  1388. Configure knows how to make sprintf format long doubles--see
  1389. sPRIgldbl), gconvert, gcvt, and sprintf (casting to double).  
  1390. The gconvert_preference and gconvert_ld_preference variables   
  1391. can be used to alter Configure's preferences, for doubles and
  1392. long doubles, respectively.  If present, they contain a       
  1393. space-separated list of one or more of the above function       
  1394. names in the order they should be tried.
  1395.  
  1396. d_Gconvert may be set to override Configure with a platform-
  1397. specific function.  If this function expects a double, a
  1398. different value may need to be set by the F<uselongdouble.cbu>
  1399. call-back unit so that long doubles can be formatted without
  1400. loss of precision.
  1401.  
  1402. =item C<d_getcwd>
  1403.  
  1404. From F<d_getcwd.U>:
  1405.  
  1406. This variable conditionally defines the C<HAS_GETCWD> symbol, which
  1407. indicates to the C program that the getcwd() routine is available
  1408. to get the current working directory.
  1409.  
  1410. =item C<d_getespwnam>
  1411.  
  1412. From F<d_getespwnam.U>:
  1413.  
  1414. This variable conditionally defines C<HAS_GETESPWNAM> if getespwnam() is
  1415. available to retrieve enchanced (shadow) password entries by name.
  1416.  
  1417. =item C<d_getfsstat>
  1418.  
  1419. From F<d_getfsstat.U>:
  1420.  
  1421. This variable conditionally defines the C<HAS_GETFSSTAT> symbol, which
  1422. indicates to the C program that the getfsstat() routine is available.
  1423.  
  1424. =item C<d_getgrent>
  1425.  
  1426. From F<d_getgrent.U>:
  1427.  
  1428. This variable conditionally defines the C<HAS_GETGRENT> symbol, which
  1429. indicates to the C program that the getgrent() routine is available
  1430. for sequential access of the group database.
  1431.  
  1432. =item C<d_getgrent_r>
  1433.  
  1434. From F<d_getgrent_r.U>:
  1435.  
  1436. This variable conditionally defines the C<HAS_GETGRENT_R> symbol,
  1437. which indicates to the C program that the getgrent_r()
  1438. routine is available.
  1439.  
  1440. =item C<d_getgrgid_r>
  1441.  
  1442. From F<d_getgrgid_r.U>:
  1443.  
  1444. This variable conditionally defines the C<HAS_GETGRGID_R> symbol,
  1445. which indicates to the C program that the getgrgid_r()
  1446. routine is available.
  1447.  
  1448. =item C<d_getgrnam_r>
  1449.  
  1450. From F<d_getgrnam_r.U>:
  1451.  
  1452. This variable conditionally defines the C<HAS_GETGRNAM_R> symbol,
  1453. which indicates to the C program that the getgrnam_r()
  1454. routine is available.
  1455.  
  1456. =item C<d_getgrps>
  1457.  
  1458. From F<d_getgrps.U>:
  1459.  
  1460. This variable conditionally defines the C<HAS_GETGROUPS> symbol, which
  1461. indicates to the C program that the getgroups() routine is available
  1462. to get the list of process groups.
  1463.  
  1464. =item C<d_gethbyaddr>
  1465.  
  1466. From F<d_gethbyad.U>:
  1467.  
  1468. This variable conditionally defines the C<HAS_GETHOSTBYADDR> symbol, which
  1469. indicates to the C program that the gethostbyaddr() routine is available
  1470. to look up hosts by their C<IP> addresses.
  1471.  
  1472. =item C<d_gethbyname>
  1473.  
  1474. From F<d_gethbynm.U>:
  1475.  
  1476. This variable conditionally defines the C<HAS_GETHOSTBYNAME> symbol, which
  1477. indicates to the C program that the gethostbyname() routine is available
  1478. to look up host names in some data base or other.
  1479.  
  1480. =item C<d_gethent>
  1481.  
  1482. From F<d_gethent.U>:
  1483.  
  1484. This variable conditionally defines C<HAS_GETHOSTENT> if gethostent() is
  1485. available to look up host names in some data base or another.
  1486.  
  1487. =item C<d_gethname>
  1488.  
  1489. From F<d_gethname.U>:
  1490.  
  1491. This variable conditionally defines the C<HAS_GETHOSTNAME> symbol, which
  1492. indicates to the C program that the gethostname() routine may be
  1493. used to derive the host name.
  1494.  
  1495. =item C<d_gethostbyaddr_r>
  1496.  
  1497. From F<d_gethostbyaddr_r.U>:
  1498.  
  1499. This variable conditionally defines the C<HAS_GETHOSTBYADDR_R> symbol,
  1500. which indicates to the C program that the gethostbyaddr_r()
  1501. routine is available.
  1502.  
  1503. =item C<d_gethostbyname_r>
  1504.  
  1505. From F<d_gethostbyname_r.U>:
  1506.  
  1507. This variable conditionally defines the C<HAS_GETHOSTBYNAME_R> symbol,
  1508. which indicates to the C program that the gethostbyname_r()
  1509. routine is available.
  1510.  
  1511. =item C<d_gethostent_r>
  1512.  
  1513. From F<d_gethostent_r.U>:
  1514.  
  1515. This variable conditionally defines the C<HAS_GETHOSTENT_R> symbol,
  1516. which indicates to the C program that the gethostent_r()
  1517. routine is available.
  1518.  
  1519. =item C<d_gethostprotos>
  1520.  
  1521. From F<d_gethostprotos.U>:
  1522.  
  1523. This variable conditionally defines the C<HAS_GETHOST_PROTOS> symbol,
  1524. which indicates to the C program that <netdb.h> supplies
  1525. prototypes for the various gethost*() functions.  
  1526. See also F<netdbtype.U> for probing for various netdb types.
  1527.  
  1528. =item C<d_getitimer>
  1529.  
  1530. From F<d_getitimer.U>:
  1531.  
  1532. This variable conditionally defines the C<HAS_GETITIMER> symbol, which
  1533. indicates to the C program that the getitimer() routine is available.
  1534.  
  1535. =item C<d_getlogin>
  1536.  
  1537. From F<d_getlogin.U>:
  1538.  
  1539. This variable conditionally defines the C<HAS_GETLOGIN> symbol, which
  1540. indicates to the C program that the getlogin() routine is available
  1541. to get the login name.
  1542.  
  1543. =item C<d_getlogin_r>
  1544.  
  1545. From F<d_getlogin_r.U>:
  1546.  
  1547. This variable conditionally defines the C<HAS_GETLOGIN_R> symbol,
  1548. which indicates to the C program that the getlogin_r()
  1549. routine is available.
  1550.  
  1551. =item C<d_getmnt>
  1552.  
  1553. From F<d_getmnt.U>:
  1554.  
  1555. This variable conditionally defines the C<HAS_GETMNT> symbol, which
  1556. indicates to the C program that the getmnt() routine is available
  1557. to retrieve one or more mount info blocks by filename.
  1558.  
  1559. =item C<d_getmntent>
  1560.  
  1561. From F<d_getmntent.U>:
  1562.  
  1563. This variable conditionally defines the C<HAS_GETMNTENT> symbol, which
  1564. indicates to the C program that the getmntent() routine is available
  1565. to iterate through mounted files to get their mount info.
  1566.  
  1567. =item C<d_getnbyaddr>
  1568.  
  1569. From F<d_getnbyad.U>:
  1570.  
  1571. This variable conditionally defines the C<HAS_GETNETBYADDR> symbol, which
  1572. indicates to the C program that the getnetbyaddr() routine is available
  1573. to look up networks by their C<IP> addresses.
  1574.  
  1575. =item C<d_getnbyname>
  1576.  
  1577. From F<d_getnbynm.U>:
  1578.  
  1579. This variable conditionally defines the C<HAS_GETNETBYNAME> symbol, which
  1580. indicates to the C program that the getnetbyname() routine is available
  1581. to look up networks by their names.
  1582.  
  1583. =item C<d_getnent>
  1584.  
  1585. From F<d_getnent.U>:
  1586.  
  1587. This variable conditionally defines C<HAS_GETNETENT> if getnetent() is
  1588. available to look up network names in some data base or another.
  1589.  
  1590. =item C<d_getnetbyaddr_r>
  1591.  
  1592. From F<d_getnetbyaddr_r.U>:
  1593.  
  1594. This variable conditionally defines the C<HAS_GETNETBYADDR_R> symbol,
  1595. which indicates to the C program that the getnetbyaddr_r()
  1596. routine is available.
  1597.  
  1598. =item C<d_getnetbyname_r>
  1599.  
  1600. From F<d_getnetbyname_r.U>:
  1601.  
  1602. This variable conditionally defines the C<HAS_GETNETBYNAME_R> symbol,
  1603. which indicates to the C program that the getnetbyname_r()
  1604. routine is available.
  1605.  
  1606. =item C<d_getnetent_r>
  1607.  
  1608. From F<d_getnetent_r.U>:
  1609.  
  1610. This variable conditionally defines the C<HAS_GETNETENT_R> symbol,
  1611. which indicates to the C program that the getnetent_r()
  1612. routine is available.
  1613.  
  1614. =item C<d_getnetprotos>
  1615.  
  1616. From F<d_getnetprotos.U>:
  1617.  
  1618. This variable conditionally defines the C<HAS_GETNET_PROTOS> symbol,
  1619. which indicates to the C program that <netdb.h> supplies
  1620. prototypes for the various getnet*() functions.  
  1621. See also F<netdbtype.U> for probing for various netdb types.
  1622.  
  1623. =item C<d_getpagsz>
  1624.  
  1625. From F<d_getpagsz.U>:
  1626.  
  1627. This variable conditionally defines C<HAS_GETPAGESIZE> if getpagesize()
  1628. is available to get the system page size.
  1629.  
  1630. =item C<d_getpbyname>
  1631.  
  1632. From F<d_getprotby.U>:
  1633.  
  1634. This variable conditionally defines the C<HAS_GETPROTOBYNAME> 
  1635. symbol, which indicates to the C program that the 
  1636. getprotobyname() routine is available to look up protocols
  1637. by their name.
  1638.  
  1639. =item C<d_getpbynumber>
  1640.  
  1641. From F<d_getprotby.U>:
  1642.  
  1643. This variable conditionally defines the C<HAS_GETPROTOBYNUMBER> 
  1644. symbol, which indicates to the C program that the 
  1645. getprotobynumber() routine is available to look up protocols
  1646. by their number.
  1647.  
  1648. =item C<d_getpent>
  1649.  
  1650. From F<d_getpent.U>:
  1651.  
  1652. This variable conditionally defines C<HAS_GETPROTOENT> if getprotoent() is
  1653. available to look up protocols in some data base or another.
  1654.  
  1655. =item C<d_getpgid>
  1656.  
  1657. From F<d_getpgid.U>:
  1658.  
  1659. This variable conditionally defines the C<HAS_GETPGID> symbol, which
  1660. indicates to the C program that the getpgid(pid) function
  1661. is available to get the process group id.
  1662.  
  1663. =item C<d_getpgrp2>
  1664.  
  1665. From F<d_getpgrp2.U>:
  1666.  
  1667. This variable conditionally defines the HAS_GETPGRP2 symbol, which
  1668. indicates to the C program that the getpgrp2() (as in F<DG/C<UX>>) routine
  1669. is available to get the current process group.
  1670.  
  1671. =item C<d_getpgrp>
  1672.  
  1673. From F<d_getpgrp.U>:
  1674.  
  1675. This variable conditionally defines C<HAS_GETPGRP> if getpgrp() is
  1676. available to get the current process group.
  1677.  
  1678. =item C<d_getppid>
  1679.  
  1680. From F<d_getppid.U>:
  1681.  
  1682. This variable conditionally defines the C<HAS_GETPPID> symbol, which
  1683. indicates to the C program that the getppid() routine is available
  1684. to get the parent process C<ID>.
  1685.  
  1686. =item C<d_getprior>
  1687.  
  1688. From F<d_getprior.U>:
  1689.  
  1690. This variable conditionally defines C<HAS_GETPRIORITY> if getpriority()
  1691. is available to get a process's priority.
  1692.  
  1693. =item C<d_getprotobyname_r>
  1694.  
  1695. From F<d_getprotobyname_r.U>:
  1696.  
  1697. This variable conditionally defines the C<HAS_GETPROTOBYNAME_R> symbol,
  1698. which indicates to the C program that the getprotobyname_r()
  1699. routine is available.
  1700.  
  1701. =item C<d_getprotobynumber_r>
  1702.  
  1703. From F<d_getprotobynumber_r.U>:
  1704.  
  1705. This variable conditionally defines the C<HAS_GETPROTOBYNUMBER_R> symbol,
  1706. which indicates to the C program that the getprotobynumber_r()
  1707. routine is available.
  1708.  
  1709. =item C<d_getprotoent_r>
  1710.  
  1711. From F<d_getprotoent_r.U>:
  1712.  
  1713. This variable conditionally defines the C<HAS_GETPROTOENT_R> symbol,
  1714. which indicates to the C program that the getprotoent_r()
  1715. routine is available.
  1716.  
  1717. =item C<d_getprotoprotos>
  1718.  
  1719. From F<d_getprotoprotos.U>:
  1720.  
  1721. This variable conditionally defines the C<HAS_GETPROTO_PROTOS> symbol,
  1722. which indicates to the C program that <netdb.h> supplies
  1723. prototypes for the various getproto*() functions.  
  1724. See also F<netdbtype.U> for probing for various netdb types.
  1725.  
  1726. =item C<d_getprpwnam>
  1727.  
  1728. From F<d_getprpwnam.U>:
  1729.  
  1730. This variable conditionally defines C<HAS_GETPRPWNAM> if getprpwnam() is
  1731. available to retrieve protected (shadow) password entries by name.
  1732.  
  1733. =item C<d_getpwent>
  1734.  
  1735. From F<d_getpwent.U>:
  1736.  
  1737. This variable conditionally defines the C<HAS_GETPWENT> symbol, which
  1738. indicates to the C program that the getpwent() routine is available
  1739. for sequential access of the passwd database.
  1740.  
  1741. =item C<d_getpwent_r>
  1742.  
  1743. From F<d_getpwent_r.U>:
  1744.  
  1745. This variable conditionally defines the C<HAS_GETPWENT_R> symbol,
  1746. which indicates to the C program that the getpwent_r()
  1747. routine is available.
  1748.  
  1749. =item C<d_getpwnam_r>
  1750.  
  1751. From F<d_getpwnam_r.U>:
  1752.  
  1753. This variable conditionally defines the C<HAS_GETPWNAM_R> symbol,
  1754. which indicates to the C program that the getpwnam_r()
  1755. routine is available.
  1756.  
  1757. =item C<d_getpwuid_r>
  1758.  
  1759. From F<d_getpwuid_r.U>:
  1760.  
  1761. This variable conditionally defines the C<HAS_GETPWUID_R> symbol,
  1762. which indicates to the C program that the getpwuid_r()
  1763. routine is available.
  1764.  
  1765. =item C<d_getsbyname>
  1766.  
  1767. From F<d_getsrvby.U>:
  1768.  
  1769. This variable conditionally defines the C<HAS_GETSERVBYNAME> 
  1770. symbol, which indicates to the C program that the 
  1771. getservbyname() routine is available to look up services
  1772. by their name.
  1773.  
  1774. =item C<d_getsbyport>
  1775.  
  1776. From F<d_getsrvby.U>:
  1777.  
  1778. This variable conditionally defines the C<HAS_GETSERVBYPORT> 
  1779. symbol, which indicates to the C program that the 
  1780. getservbyport() routine is available to look up services
  1781. by their port.
  1782.  
  1783. =item C<d_getsent>
  1784.  
  1785. From F<d_getsent.U>:
  1786.  
  1787. This variable conditionally defines C<HAS_GETSERVENT> if getservent() is
  1788. available to look up network services in some data base or another.
  1789.  
  1790. =item C<d_getservbyname_r>
  1791.  
  1792. From F<d_getservbyname_r.U>:
  1793.  
  1794. This variable conditionally defines the C<HAS_GETSERVBYNAME_R> symbol,
  1795. which indicates to the C program that the getservbyname_r()
  1796. routine is available.
  1797.  
  1798. =item C<d_getservbyport_r>
  1799.  
  1800. From F<d_getservbyport_r.U>:
  1801.  
  1802. This variable conditionally defines the C<HAS_GETSERVBYPORT_R> symbol,
  1803. which indicates to the C program that the getservbyport_r()
  1804. routine is available.
  1805.  
  1806. =item C<d_getservent_r>
  1807.  
  1808. From F<d_getservent_r.U>:
  1809.  
  1810. This variable conditionally defines the C<HAS_GETSERVENT_R> symbol,
  1811. which indicates to the C program that the getservent_r()
  1812. routine is available.
  1813.  
  1814. =item C<d_getservprotos>
  1815.  
  1816. From F<d_getservprotos.U>:
  1817.  
  1818. This variable conditionally defines the C<HAS_GETSERV_PROTOS> symbol,
  1819. which indicates to the C program that <netdb.h> supplies
  1820. prototypes for the various getserv*() functions.  
  1821. See also F<netdbtype.U> for probing for various netdb types.
  1822.  
  1823. =item C<d_getspnam>
  1824.  
  1825. From F<d_getspnam.U>:
  1826.  
  1827. This variable conditionally defines C<HAS_GETSPNAM> if getspnam() is
  1828. available to retrieve SysV shadow password entries by name.
  1829.  
  1830. =item C<d_getspnam_r>
  1831.  
  1832. From F<d_getspnam_r.U>:
  1833.  
  1834. This variable conditionally defines the C<HAS_GETSPNAM_R> symbol,
  1835. which indicates to the C program that the getspnam_r()
  1836. routine is available.
  1837.  
  1838. =item C<d_gettimeod>
  1839.  
  1840. From F<d_ftime.U>:
  1841.  
  1842. This variable conditionally defines the C<HAS_GETTIMEOFDAY> symbol, which
  1843. indicates that the gettimeofday() system call exists (to obtain a
  1844. sub-second accuracy clock). You should probably include <sys/resource.h>.
  1845.  
  1846. =item C<d_gmtime_r>
  1847.  
  1848. From F<d_gmtime_r.U>:
  1849.  
  1850. This variable conditionally defines the C<HAS_GMTIME_R> symbol,
  1851. which indicates to the C program that the gmtime_r()
  1852. routine is available.
  1853.  
  1854. =item C<d_gnulibc>
  1855.  
  1856. From F<d_gnulibc.U>:
  1857.  
  1858. Defined if we're dealing with the C<GNU> C Library.
  1859.  
  1860. =item C<d_grpasswd>
  1861.  
  1862. From F<i_grp.U>:
  1863.  
  1864. This variable conditionally defines C<GRPASSWD>, which indicates
  1865. that struct group in <grp.h> contains gr_passwd.
  1866.  
  1867. =item C<d_hasmntopt>
  1868.  
  1869. From F<d_hasmntopt.U>:
  1870.  
  1871. This variable conditionally defines the C<HAS_HASMNTOPT> symbol, which
  1872. indicates to the C program that the hasmntopt() routine is available
  1873. to query the mount options of file systems.
  1874.  
  1875. =item C<d_htonl>
  1876.  
  1877. From F<d_htonl.U>:
  1878.  
  1879. This variable conditionally defines C<HAS_HTONL> if htonl() and its
  1880. friends are available to do network order byte swapping.
  1881.  
  1882. =item C<d_ilogbl>
  1883.  
  1884. From F<d_ilogbl.U>:
  1885.  
  1886. This variable conditionally defines the C<HAS_ILOGBL> symbol, which
  1887. indicates to the C program that the ilogbl() routine is available.
  1888. If scalbnl is also present we can emulate frexpl.
  1889.  
  1890. =item C<d_index>
  1891.  
  1892. From F<d_strchr.U>:
  1893.  
  1894. This variable conditionally defines C<HAS_INDEX> if index() and
  1895. rindex() are available for string searching.
  1896.  
  1897. =item C<d_inetaton>
  1898.  
  1899. From F<d_inetaton.U>:
  1900.  
  1901. This variable conditionally defines the C<HAS_INET_ATON> symbol, which
  1902. indicates to the C program that the inet_aton() function is available
  1903. to parse C<IP> address C<dotted-quad> strings.
  1904.  
  1905. =item C<d_int64_t>
  1906.  
  1907. From F<d_int64_t.U>:
  1908.  
  1909. This symbol will be defined if the C compiler supports int64_t.
  1910.  
  1911. =item C<d_isascii>
  1912.  
  1913. From F<d_isascii.U>:
  1914.  
  1915. This variable conditionally defines the C<HAS_ISASCII> constant,
  1916. which indicates to the C program that isascii() is available.
  1917.  
  1918. =item C<d_isfinite>
  1919.  
  1920. From F<d_isfinite.U>:
  1921.  
  1922. This variable conditionally defines the C<HAS_ISFINITE> symbol, which
  1923. indicates to the C program that the isfinite() routine is available.
  1924.  
  1925. =item C<d_isinf>
  1926.  
  1927. From F<d_isinf.U>:
  1928.  
  1929. This variable conditionally defines the C<HAS_ISINF> symbol, which
  1930. indicates to the C program that the isinf() routine is available.
  1931.  
  1932. =item C<d_isnan>
  1933.  
  1934. From F<d_isnan.U>:
  1935.  
  1936. This variable conditionally defines the C<HAS_ISNAN> symbol, which
  1937. indicates to the C program that the isnan() routine is available.
  1938.  
  1939. =item C<d_isnanl>
  1940.  
  1941. From F<d_isnanl.U>:
  1942.  
  1943. This variable conditionally defines the C<HAS_ISNANL> symbol, which
  1944. indicates to the C program that the isnanl() routine is available.
  1945.  
  1946. =item C<d_killpg>
  1947.  
  1948. From F<d_killpg.U>:
  1949.  
  1950. This variable conditionally defines the C<HAS_KILLPG> symbol, which
  1951. indicates to the C program that the killpg() routine is available
  1952. to kill process groups.
  1953.  
  1954. =item C<d_lchown>
  1955.  
  1956. From F<d_lchown.U>:
  1957.  
  1958. This variable conditionally defines the C<HAS_LCHOWN> symbol, which
  1959. indicates to the C program that the lchown() routine is available
  1960. to operate on a symbolic link (instead of following the link).
  1961.  
  1962. =item C<d_ldbl_dig>
  1963.  
  1964. From F<d_ldbl_dig.U>:
  1965.  
  1966. This variable conditionally defines d_ldbl_dig if this system's
  1967. header files provide C<LDBL_DIG>, which is the number of significant
  1968. digits in a long double precision number.
  1969.  
  1970. =item C<d_link>
  1971.  
  1972. From F<d_link.U>:
  1973.  
  1974. This variable conditionally defines C<HAS_LINK> if link() is
  1975. available to create hard links.
  1976.  
  1977. =item C<d_localtime_r>
  1978.  
  1979. From F<d_localtime_r.U>:
  1980.  
  1981. This variable conditionally defines the C<HAS_LOCALTIME_R> symbol,
  1982. which indicates to the C program that the localtime_r()
  1983. routine is available.
  1984.  
  1985. =item C<d_locconv>
  1986.  
  1987. From F<d_locconv.U>:
  1988.  
  1989. This variable conditionally defines C<HAS_LOCALECONV> if localeconv() is
  1990. available for numeric and monetary formatting conventions.
  1991.  
  1992. =item C<d_lockf>
  1993.  
  1994. From F<d_lockf.U>:
  1995.  
  1996. This variable conditionally defines C<HAS_LOCKF> if lockf() is
  1997. available to do file locking.
  1998.  
  1999. =item C<d_longdbl>
  2000.  
  2001. From F<d_longdbl.U>:
  2002.  
  2003. This variable conditionally defines C<HAS_LONG_DOUBLE> if 
  2004. the long double type is supported.
  2005.  
  2006. =item C<d_longlong>
  2007.  
  2008. From F<d_longlong.U>:
  2009.  
  2010. This variable conditionally defines C<HAS_LONG_LONG> if 
  2011. the long long type is supported.
  2012.  
  2013. =item C<d_lseekproto>
  2014.  
  2015. From F<d_lseekproto.U>:
  2016.  
  2017. This variable conditionally defines the C<HAS_LSEEK_PROTO> symbol,
  2018. which indicates to the C program that the system provides
  2019. a prototype for the lseek() function.  Otherwise, it is
  2020. up to the program to supply one.
  2021.  
  2022. =item C<d_lstat>
  2023.  
  2024. From F<d_lstat.U>:
  2025.  
  2026. This variable conditionally defines C<HAS_LSTAT> if lstat() is
  2027. available to do file stats on symbolic links.
  2028.  
  2029. =item C<d_madvise>
  2030.  
  2031. From F<d_madvise.U>:
  2032.  
  2033. This variable conditionally defines C<HAS_MADVISE> if madvise() is
  2034. available to map a file into memory.
  2035.  
  2036. =item C<d_mblen>
  2037.  
  2038. From F<d_mblen.U>:
  2039.  
  2040. This variable conditionally defines the C<HAS_MBLEN> symbol, which
  2041. indicates to the C program that the mblen() routine is available
  2042. to find the number of bytes in a multibye character.
  2043.  
  2044. =item C<d_mbstowcs>
  2045.  
  2046. From F<d_mbstowcs.U>:
  2047.  
  2048. This variable conditionally defines the C<HAS_MBSTOWCS> symbol, which
  2049. indicates to the C program that the mbstowcs() routine is available
  2050. to convert a multibyte string into a wide character string.
  2051.  
  2052. =item C<d_mbtowc>
  2053.  
  2054. From F<d_mbtowc.U>:
  2055.  
  2056. This variable conditionally defines the C<HAS_MBTOWC> symbol, which
  2057. indicates to the C program that the mbtowc() routine is available
  2058. to convert multibyte to a wide character.
  2059.  
  2060. =item C<d_memchr>
  2061.  
  2062. From F<d_memchr.U>:
  2063.  
  2064. This variable conditionally defines the C<HAS_MEMCHR> symbol, which
  2065. indicates to the C program that the memchr() routine is available
  2066. to locate characters within a C string.
  2067.  
  2068. =item C<d_memcmp>
  2069.  
  2070. From F<d_memcmp.U>:
  2071.  
  2072. This variable conditionally defines the C<HAS_MEMCMP> symbol, which
  2073. indicates to the C program that the memcmp() routine is available
  2074. to compare blocks of memory.
  2075.  
  2076. =item C<d_memcpy>
  2077.  
  2078. From F<d_memcpy.U>:
  2079.  
  2080. This variable conditionally defines the C<HAS_MEMCPY> symbol, which
  2081. indicates to the C program that the memcpy() routine is available
  2082. to copy blocks of memory.
  2083.  
  2084. =item C<d_memmove>
  2085.  
  2086. From F<d_memmove.U>:
  2087.  
  2088. This variable conditionally defines the C<HAS_MEMMOVE> symbol, which
  2089. indicates to the C program that the memmove() routine is available
  2090. to copy potentatially overlapping blocks of memory.
  2091.  
  2092. =item C<d_memset>
  2093.  
  2094. From F<d_memset.U>:
  2095.  
  2096. This variable conditionally defines the C<HAS_MEMSET> symbol, which
  2097. indicates to the C program that the memset() routine is available
  2098. to set blocks of memory.
  2099.  
  2100. =item C<d_mkdir>
  2101.  
  2102. From F<d_mkdir.U>:
  2103.  
  2104. This variable conditionally defines the C<HAS_MKDIR> symbol, which
  2105. indicates to the C program that the mkdir() routine is available
  2106. to create F<directories.>.
  2107.  
  2108. =item C<d_mkdtemp>
  2109.  
  2110. From F<d_mkdtemp.U>:
  2111.  
  2112. This variable conditionally defines the C<HAS_MKDTEMP> symbol, which
  2113. indicates to the C program that the mkdtemp() routine is available
  2114. to exclusively create a uniquely named temporary directory.
  2115.  
  2116. =item C<d_mkfifo>
  2117.  
  2118. From F<d_mkfifo.U>:
  2119.  
  2120. This variable conditionally defines the C<HAS_MKFIFO> symbol, which
  2121. indicates to the C program that the mkfifo() routine is available.
  2122.  
  2123. =item C<d_mkstemp>
  2124.  
  2125. From F<d_mkstemp.U>:
  2126.  
  2127. This variable conditionally defines the C<HAS_MKSTEMP> symbol, which
  2128. indicates to the C program that the mkstemp() routine is available
  2129. to exclusively create and open a uniquely named temporary file.
  2130.  
  2131. =item C<d_mkstemps>
  2132.  
  2133. From F<d_mkstemps.U>:
  2134.  
  2135. This variable conditionally defines the C<HAS_MKSTEMPS> symbol, which
  2136. indicates to the C program that the mkstemps() routine is available
  2137. to exclusively create and open a uniquely named (with a suffix)
  2138. temporary file.
  2139.  
  2140. =item C<d_mktime>
  2141.  
  2142. From F<d_mktime.U>:
  2143.  
  2144. This variable conditionally defines the C<HAS_MKTIME> symbol, which
  2145. indicates to the C program that the mktime() routine is available.
  2146.  
  2147. =item C<d_mmap>
  2148.  
  2149. From F<d_mmap.U>:
  2150.  
  2151. This variable conditionally defines C<HAS_MMAP> if mmap() is
  2152. available to map a file into memory.
  2153.  
  2154. =item C<d_modfl>
  2155.  
  2156. From F<d_modfl.U>:
  2157.  
  2158. This variable conditionally defines the C<HAS_MODFL> symbol, which
  2159. indicates to the C program that the modfl() routine is available.
  2160.  
  2161. =item C<d_modfl_pow32_bug>
  2162.  
  2163. From F<d_modfl.U>:
  2164.  
  2165. This variable conditionally defines the HAS_MODFL_POW32_BUG symbol,
  2166. which indicates that modfl() is broken for long doubles >= pow(2, 32).
  2167. For example from 4294967303.150000 one would get 4294967302.000000
  2168. and 1.150000.  The bug has been seen in certain versions of glibc,
  2169. release 2.2.2 is known to be okay.
  2170.  
  2171. =item C<d_modflproto>
  2172.  
  2173. From F<d_modfl.U>:
  2174.  
  2175. This symbol, if defined, indicates that the system provides
  2176. a prototype for the modfl() function.  Otherwise, it is up
  2177. to the program to supply one.  C99 says it should be
  2178. long double modfl(long double, long double *);
  2179.  
  2180. =item C<d_mprotect>
  2181.  
  2182. From F<d_mprotect.U>:
  2183.  
  2184. This variable conditionally defines C<HAS_MPROTECT> if mprotect() is
  2185. available to modify the access protection of a memory mapped file.
  2186.  
  2187. =item C<d_msg>
  2188.  
  2189. From F<d_msg.U>:
  2190.  
  2191. This variable conditionally defines the C<HAS_MSG> symbol, which
  2192. indicates that the entire msg*(2) library is present.
  2193.  
  2194. =item C<d_msg_ctrunc>
  2195.  
  2196. From F<d_socket.U>:
  2197.  
  2198. This variable conditionally defines the C<HAS_MSG_CTRUNC> symbol,
  2199. which indicates that the C<MSG_CTRUNC> is available.  #ifdef is
  2200. not enough because it may be an enum, glibc has been known to do this.
  2201.  
  2202. =item C<d_msg_dontroute>
  2203.  
  2204. From F<d_socket.U>:
  2205.  
  2206. This variable conditionally defines the C<HAS_MSG_DONTROUTE> symbol,
  2207. which indicates that the C<MSG_DONTROUTE> is available.  #ifdef is
  2208. not enough because it may be an enum, glibc has been known to do this.
  2209.  
  2210. =item C<d_msg_oob>
  2211.  
  2212. From F<d_socket.U>:
  2213.  
  2214. This variable conditionally defines the C<HAS_MSG_OOB> symbol,
  2215. which indicates that the C<MSG_OOB> is available.  #ifdef is
  2216. not enough because it may be an enum, glibc has been known to do this.
  2217.  
  2218. =item C<d_msg_peek>
  2219.  
  2220. From F<d_socket.U>:
  2221.  
  2222. This variable conditionally defines the C<HAS_MSG_PEEK> symbol,
  2223. which indicates that the C<MSG_PEEK> is available.  #ifdef is
  2224. not enough because it may be an enum, glibc has been known to do this.
  2225.  
  2226. =item C<d_msg_proxy>
  2227.  
  2228. From F<d_socket.U>:
  2229.  
  2230. This variable conditionally defines the C<HAS_MSG_PROXY> symbol,
  2231. which indicates that the C<MSG_PROXY> is available.  #ifdef is
  2232. not enough because it may be an enum, glibc has been known to do this.
  2233.  
  2234. =item C<d_msgctl>
  2235.  
  2236. From F<d_msgctl.U>:
  2237.  
  2238. This variable conditionally defines the C<HAS_MSGCTL> symbol, which
  2239. indicates to the C program that the msgctl() routine is available.
  2240.  
  2241. =item C<d_msgget>
  2242.  
  2243. From F<d_msgget.U>:
  2244.  
  2245. This variable conditionally defines the C<HAS_MSGGET> symbol, which
  2246. indicates to the C program that the msgget() routine is available.
  2247.  
  2248. =item C<d_msghdr_s>
  2249.  
  2250. From F<d_msghdr_s.U>:
  2251.  
  2252. This variable conditionally defines the C<HAS_STRUCT_MSGHDR> symbol,
  2253. which indicates that the struct msghdr is supported.
  2254.  
  2255. =item C<d_msgrcv>
  2256.  
  2257. From F<d_msgrcv.U>:
  2258.  
  2259. This variable conditionally defines the C<HAS_MSGRCV> symbol, which
  2260. indicates to the C program that the msgrcv() routine is available.
  2261.  
  2262. =item C<d_msgsnd>
  2263.  
  2264. From F<d_msgsnd.U>:
  2265.  
  2266. This variable conditionally defines the C<HAS_MSGSND> symbol, which
  2267. indicates to the C program that the msgsnd() routine is available.
  2268.  
  2269. =item C<d_msync>
  2270.  
  2271. From F<d_msync.U>:
  2272.  
  2273. This variable conditionally defines C<HAS_MSYNC> if msync() is
  2274. available to synchronize a mapped file.
  2275.  
  2276. =item C<d_munmap>
  2277.  
  2278. From F<d_munmap.U>:
  2279.  
  2280. This variable conditionally defines C<HAS_MUNMAP> if munmap() is
  2281. available to unmap a region mapped by mmap().
  2282.  
  2283. =item C<d_mymalloc>
  2284.  
  2285. From F<mallocsrc.U>:
  2286.  
  2287. This variable conditionally defines C<MYMALLOC> in case other parts
  2288. of the source want to take special action if C<MYMALLOC> is used.
  2289. This may include different sorts of profiling or error detection.
  2290.  
  2291. =item C<d_nanosleep>
  2292.  
  2293. From F<d_nanosleep.U>:
  2294.  
  2295. This variable conditionally defines C<HAS_NANOSLEEP>
  2296. if nanosleep() is available to sleep with 1E-9 sec accuracy.
  2297.  
  2298. =item C<d_nice>
  2299.  
  2300. From F<d_nice.U>:
  2301.  
  2302. This variable conditionally defines the C<HAS_NICE> symbol, which
  2303. indicates to the C program that the nice() routine is available.
  2304.  
  2305. =item C<d_nl_langinfo>
  2306.  
  2307. From F<d_nl_langinfo.U>:
  2308.  
  2309. This variable conditionally defines the C<HAS_NL_LANGINFO> symbol, which
  2310. indicates to the C program that the nl_langinfo() routine is available.
  2311.  
  2312. =item C<d_nv_preserves_uv>
  2313.  
  2314. From F<perlxv.U>:
  2315.  
  2316. This variable indicates whether a variable of type nvtype
  2317. can preserve all the bits a variable of type uvtype.
  2318.  
  2319. =item C<d_off64_t>
  2320.  
  2321. From F<d_off64_t.U>:
  2322.  
  2323. This symbol will be defined if the C compiler supports off64_t.
  2324.  
  2325. =item C<d_old_pthread_create_joinable>
  2326.  
  2327. From F<d_pthrattrj.U>:
  2328.  
  2329. This variable conditionally defines pthread_create_joinable.
  2330. undef if F<pthread.h> defines C<PTHREAD_CREATE_JOINABLE>.
  2331.  
  2332. =item C<d_oldpthreads>
  2333.  
  2334. From F<usethreads.U>:
  2335.  
  2336. This variable conditionally defines the C<OLD_PTHREADS_API> symbol,
  2337. and indicates that Perl should be built to use the old
  2338. draft C<POSIX> threads C<API>.  This is only potentially meaningful if
  2339. usethreads is set.
  2340.  
  2341. =item C<d_oldsock>
  2342.  
  2343. From F<d_socket.U>:
  2344.  
  2345. This variable conditionally defines the C<OLDSOCKET> symbol, which
  2346. indicates that the C<BSD> socket interface is based on 4.1c and not 4.2.
  2347.  
  2348. =item C<d_open3>
  2349.  
  2350. From F<d_open3.U>:
  2351.  
  2352. This variable conditionally defines the HAS_OPEN3 manifest constant,
  2353. which indicates to the C program that the 3 argument version of
  2354. the open(2) function is available.
  2355.  
  2356. =item C<d_pathconf>
  2357.  
  2358. From F<d_pathconf.U>:
  2359.  
  2360. This variable conditionally defines the C<HAS_PATHCONF> symbol, which
  2361. indicates to the C program that the pathconf() routine is available
  2362. to determine file-system related limits and options associated
  2363. with a given filename.
  2364.  
  2365. =item C<d_pause>
  2366.  
  2367. From F<d_pause.U>:
  2368.  
  2369. This variable conditionally defines the C<HAS_PAUSE> symbol, which
  2370. indicates to the C program that the pause() routine is available
  2371. to suspend a process until a signal is received.
  2372.  
  2373. =item C<d_perl_otherlibdirs>
  2374.  
  2375. From F<otherlibdirs.U>:
  2376.  
  2377. This variable conditionally defines C<PERL_OTHERLIBDIRS>, which
  2378. contains a colon-separated set of paths for the perl binary to
  2379. include in @C<INC>.  See also otherlibdirs.
  2380.  
  2381. =item C<d_phostname>
  2382.  
  2383. From F<d_gethname.U>:
  2384.  
  2385. This variable conditionally defines the C<HAS_PHOSTNAME> symbol, which
  2386. contains the shell command which, when fed to popen(), may be
  2387. used to derive the host name.
  2388.  
  2389. =item C<d_pipe>
  2390.  
  2391. From F<d_pipe.U>:
  2392.  
  2393. This variable conditionally defines the C<HAS_PIPE> symbol, which
  2394. indicates to the C program that the pipe() routine is available
  2395. to create an inter-process channel.
  2396.  
  2397. =item C<d_poll>
  2398.  
  2399. From F<d_poll.U>:
  2400.  
  2401. This variable conditionally defines the C<HAS_POLL> symbol, which
  2402. indicates to the C program that the poll() routine is available
  2403. to poll active file descriptors.
  2404.  
  2405. =item C<d_portable>
  2406.  
  2407. From F<d_portable.U>:
  2408.  
  2409. This variable conditionally defines the C<PORTABLE> symbol, which
  2410. indicates to the C program that it should not assume that it is
  2411. running on the machine it was compiled on.
  2412.  
  2413. =item C<d_PRId64>
  2414.  
  2415. From F<quadfio.U>:
  2416.  
  2417. This variable conditionally defines the PERL_PRId64 symbol, which
  2418. indiciates that stdio has a symbol to print 64-bit decimal numbers.
  2419.  
  2420. =item C<d_PRIeldbl>
  2421.  
  2422. From F<longdblfio.U>:
  2423.  
  2424. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2425. indiciates that stdio has a symbol to print long doubles.
  2426.  
  2427. =item C<d_PRIEUldbl>
  2428.  
  2429. From F<longdblfio.U>:
  2430.  
  2431. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2432. indiciates that stdio has a symbol to print long doubles.
  2433. The C<U> in the name is to separate this from d_PRIeldbl so that even
  2434. case-blind systems can see the difference.
  2435.  
  2436. =item C<d_PRIfldbl>
  2437.  
  2438. From F<longdblfio.U>:
  2439.  
  2440. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2441. indiciates that stdio has a symbol to print long doubles.
  2442.  
  2443. =item C<d_PRIFUldbl>
  2444.  
  2445. From F<longdblfio.U>:
  2446.  
  2447. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2448. indiciates that stdio has a symbol to print long doubles.
  2449. The C<U> in the name is to separate this from d_PRIfldbl so that even
  2450. case-blind systems can see the difference.
  2451.  
  2452. =item C<d_PRIgldbl>
  2453.  
  2454. From F<longdblfio.U>:
  2455.  
  2456. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2457. indiciates that stdio has a symbol to print long doubles.
  2458.  
  2459. =item C<d_PRIGUldbl>
  2460.  
  2461. From F<longdblfio.U>:
  2462.  
  2463. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2464. indiciates that stdio has a symbol to print long doubles.
  2465. The C<U> in the name is to separate this from d_PRIgldbl so that even
  2466. case-blind systems can see the difference.
  2467.  
  2468. =item C<d_PRIi64>
  2469.  
  2470. From F<quadfio.U>:
  2471.  
  2472. This variable conditionally defines the PERL_PRIi64 symbol, which
  2473. indiciates that stdio has a symbol to print 64-bit decimal numbers.
  2474.  
  2475. =item C<d_PRIo64>
  2476.  
  2477. From F<quadfio.U>:
  2478.  
  2479. This variable conditionally defines the PERL_PRIo64 symbol, which
  2480. indiciates that stdio has a symbol to print 64-bit octal numbers.
  2481.  
  2482. =item C<d_PRIu64>
  2483.  
  2484. From F<quadfio.U>:
  2485.  
  2486. This variable conditionally defines the PERL_PRIu64 symbol, which
  2487. indiciates that stdio has a symbol to print 64-bit unsigned decimal
  2488. numbers.
  2489.  
  2490. =item C<d_PRIx64>
  2491.  
  2492. From F<quadfio.U>:
  2493.  
  2494. This variable conditionally defines the PERL_PRIx64 symbol, which
  2495. indiciates that stdio has a symbol to print 64-bit hexadecimal numbers.
  2496.  
  2497. =item C<d_PRIXU64>
  2498.  
  2499. From F<quadfio.U>:
  2500.  
  2501. This variable conditionally defines the PERL_PRIXU64 symbol, which
  2502. indiciates that stdio has a symbol to print 64-bit hExADECimAl numbers.
  2503. The C<U> in the name is to separate this from d_PRIx64 so that even
  2504. case-blind systems can see the difference.
  2505.  
  2506. =item C<d_procselfexe>
  2507.  
  2508. From F<d_procselfexe.U>:
  2509.  
  2510. Defined if $procselfexe is symlink to the absolute
  2511. pathname of the executing program.
  2512.  
  2513. =item C<d_pthread_atfork>
  2514.  
  2515. From F<d_pthread_atfork.U>:
  2516.  
  2517. This variable conditionally defines the C<HAS_PTHREAD_ATFORK> symbol,
  2518. which indicates to the C program that the pthread_atfork()
  2519. routine is available.
  2520.  
  2521. =item C<d_pthread_attr_setscope>
  2522.  
  2523. From F<d_pthread_attr_ss.U>:
  2524.  
  2525. This variable conditionally defines C<HAS_PTHREAD_ATTR_SETSCOPE> if
  2526. pthread_attr_setscope() is available to set the contention scope
  2527. attribute of a thread attribute object.
  2528.  
  2529. =item C<d_pthread_yield>
  2530.  
  2531. From F<d_pthread_y.U>:
  2532.  
  2533. This variable conditionally defines the C<HAS_PTHREAD_YIELD>
  2534. symbol if the pthread_yield routine is available to yield
  2535. the execution of the current thread.
  2536.  
  2537. =item C<d_pwage>
  2538.  
  2539. From F<i_pwd.U>:
  2540.  
  2541. This variable conditionally defines C<PWAGE>, which indicates
  2542. that struct passwd contains pw_age.
  2543.  
  2544. =item C<d_pwchange>
  2545.  
  2546. From F<i_pwd.U>:
  2547.  
  2548. This variable conditionally defines C<PWCHANGE>, which indicates
  2549. that struct passwd contains pw_change.
  2550.  
  2551. =item C<d_pwclass>
  2552.  
  2553. From F<i_pwd.U>:
  2554.  
  2555. This variable conditionally defines C<PWCLASS>, which indicates
  2556. that struct passwd contains pw_class.
  2557.  
  2558. =item C<d_pwcomment>
  2559.  
  2560. From F<i_pwd.U>:
  2561.  
  2562. This variable conditionally defines C<PWCOMMENT>, which indicates
  2563. that struct passwd contains pw_comment.
  2564.  
  2565. =item C<d_pwexpire>
  2566.  
  2567. From F<i_pwd.U>:
  2568.  
  2569. This variable conditionally defines C<PWEXPIRE>, which indicates
  2570. that struct passwd contains pw_expire.
  2571.  
  2572. =item C<d_pwgecos>
  2573.  
  2574. From F<i_pwd.U>:
  2575.  
  2576. This variable conditionally defines C<PWGECOS>, which indicates
  2577. that struct passwd contains pw_gecos.
  2578.  
  2579. =item C<d_pwpasswd>
  2580.  
  2581. From F<i_pwd.U>:
  2582.  
  2583. This variable conditionally defines C<PWPASSWD>, which indicates
  2584. that struct passwd contains pw_passwd.
  2585.  
  2586. =item C<d_pwquota>
  2587.  
  2588. From F<i_pwd.U>:
  2589.  
  2590. This variable conditionally defines C<PWQUOTA>, which indicates
  2591. that struct passwd contains pw_quota.
  2592.  
  2593. =item C<d_qgcvt>
  2594.  
  2595. From F<d_qgcvt.U>:
  2596.  
  2597. This variable conditionally defines the C<HAS_QGCVT> symbol, which
  2598. indicates to the C program that the qgcvt() routine is available.
  2599.  
  2600. =item C<d_quad>
  2601.  
  2602. From F<quadtype.U>:
  2603.  
  2604. This variable, if defined, tells that there's a 64-bit integer type,
  2605. quadtype.
  2606.  
  2607. =item C<d_random_r>
  2608.  
  2609. From F<d_random_r.U>:
  2610.  
  2611. This variable conditionally defines the C<HAS_RANDOM_R> symbol,
  2612. which indicates to the C program that the random_r()
  2613. routine is available.
  2614.  
  2615. =item C<d_readdir64_r>
  2616.  
  2617. From F<d_readdir64_r.U>:
  2618.  
  2619. This variable conditionally defines the HAS_READDIR64_R symbol,
  2620. which indicates to the C program that the readdir64_r()
  2621. routine is available.
  2622.  
  2623. =item C<d_readdir>
  2624.  
  2625. From F<d_readdir.U>:
  2626.  
  2627. This variable conditionally defines C<HAS_READDIR> if readdir() is
  2628. available to read directory entries.
  2629.  
  2630. =item C<d_readdir_r>
  2631.  
  2632. From F<d_readdir_r.U>:
  2633.  
  2634. This variable conditionally defines the C<HAS_READDIR_R> symbol,
  2635. which indicates to the C program that the readdir_r()
  2636. routine is available.
  2637.  
  2638. =item C<d_readlink>
  2639.  
  2640. From F<d_readlink.U>:
  2641.  
  2642. This variable conditionally defines the C<HAS_READLINK> symbol, which
  2643. indicates to the C program that the readlink() routine is available
  2644. to read the value of a symbolic link.
  2645.  
  2646. =item C<d_readv>
  2647.  
  2648. From F<d_readv.U>:
  2649.  
  2650. This variable conditionally defines the C<HAS_READV> symbol, which
  2651. indicates to the C program that the readv() routine is available.
  2652.  
  2653. =item C<d_recvmsg>
  2654.  
  2655. From F<d_recvmsg.U>:
  2656.  
  2657. This variable conditionally defines the C<HAS_RECVMSG> symbol, which
  2658. indicates to the C program that the recvmsg() routine is available.
  2659.  
  2660. =item C<d_rename>
  2661.  
  2662. From F<d_rename.U>:
  2663.  
  2664. This variable conditionally defines the C<HAS_RENAME> symbol, which
  2665. indicates to the C program that the rename() routine is available
  2666. to rename files.
  2667.  
  2668. =item C<d_rewinddir>
  2669.  
  2670. From F<d_readdir.U>:
  2671.  
  2672. This variable conditionally defines C<HAS_REWINDDIR> if rewinddir() is
  2673. available.
  2674.  
  2675. =item C<d_rmdir>
  2676.  
  2677. From F<d_rmdir.U>:
  2678.  
  2679. This variable conditionally defines C<HAS_RMDIR> if rmdir() is
  2680. available to remove directories.
  2681.  
  2682. =item C<d_safebcpy>
  2683.  
  2684. From F<d_safebcpy.U>:
  2685.  
  2686. This variable conditionally defines the C<HAS_SAFE_BCOPY> symbol if
  2687. the bcopy() routine can do overlapping copies.  Normally, you
  2688. should probably use memmove().
  2689.  
  2690. =item C<d_safemcpy>
  2691.  
  2692. From F<d_safemcpy.U>:
  2693.  
  2694. This variable conditionally defines the C<HAS_SAFE_MEMCPY> symbol if
  2695. the memcpy() routine can do overlapping copies.
  2696. For overlapping copies, memmove() should be used, if available.
  2697.  
  2698. =item C<d_sanemcmp>
  2699.  
  2700. From F<d_sanemcmp.U>:
  2701.  
  2702. This variable conditionally defines the C<HAS_SANE_MEMCMP> symbol if
  2703. the memcpy() routine is available and can be used to compare relative
  2704. magnitudes of chars with their high bits set.
  2705.  
  2706. =item C<d_sbrkproto>
  2707.  
  2708. From F<d_sbrkproto.U>:
  2709.  
  2710. This variable conditionally defines the C<HAS_SBRK_PROTO> symbol,
  2711. which indicates to the C program that the system provides
  2712. a prototype for the sbrk() function.  Otherwise, it is
  2713. up to the program to supply one.
  2714.  
  2715. =item C<d_scalbnl>
  2716.  
  2717. From F<d_scalbnl.U>:
  2718.  
  2719. This variable conditionally defines the C<HAS_SCALBNL> symbol, which
  2720. indicates to the C program that the scalbnl() routine is available.
  2721. If ilogbl is also present we can emulate frexpl.
  2722.  
  2723. =item C<d_sched_yield>
  2724.  
  2725. From F<d_pthread_y.U>:
  2726.  
  2727. This variable conditionally defines the C<HAS_SCHED_YIELD>
  2728. symbol if the sched_yield routine is available to yield
  2729. the execution of the current thread.
  2730.  
  2731. =item C<d_scm_rights>
  2732.  
  2733. From F<d_socket.U>:
  2734.  
  2735. This variable conditionally defines the C<HAS_SCM_RIGHTS> symbol,
  2736. which indicates that the C<SCM_RIGHTS> is available.  #ifdef is
  2737. not enough because it may be an enum, glibc has been known to do this.
  2738.  
  2739. =item C<d_SCNfldbl>
  2740.  
  2741. From F<longdblfio.U>:
  2742.  
  2743. This variable conditionally defines the PERL_PRIfldbl symbol, which
  2744. indiciates that stdio has a symbol to scan long doubles.
  2745.  
  2746. =item C<d_seekdir>
  2747.  
  2748. From F<d_readdir.U>:
  2749.  
  2750. This variable conditionally defines C<HAS_SEEKDIR> if seekdir() is
  2751. available.
  2752.  
  2753. =item C<d_select>
  2754.  
  2755. From F<d_select.U>:
  2756.  
  2757. This variable conditionally defines C<HAS_SELECT> if select() is
  2758. available to select active file descriptors. A <sys/time.h>
  2759. inclusion may be necessary for the timeout field.
  2760.  
  2761. =item C<d_sem>
  2762.  
  2763. From F<d_sem.U>:
  2764.  
  2765. This variable conditionally defines the C<HAS_SEM> symbol, which
  2766. indicates that the entire sem*(2) library is present.
  2767.  
  2768. =item C<d_semctl>
  2769.  
  2770. From F<d_semctl.U>:
  2771.  
  2772. This variable conditionally defines the C<HAS_SEMCTL> symbol, which
  2773. indicates to the C program that the semctl() routine is available.
  2774.  
  2775. =item C<d_semctl_semid_ds>
  2776.  
  2777. From F<d_union_semun.U>:
  2778.  
  2779. This variable conditionally defines C<USE_SEMCTL_SEMID_DS>, which
  2780. indicates that struct semid_ds * is to be used for semctl C<IPC_STAT>.
  2781.  
  2782. =item C<d_semctl_semun>
  2783.  
  2784. From F<d_union_semun.U>:
  2785.  
  2786. This variable conditionally defines C<USE_SEMCTL_SEMUN>, which
  2787. indicates that union semun is to be used for semctl C<IPC_STAT>.
  2788.  
  2789. =item C<d_semget>
  2790.  
  2791. From F<d_semget.U>:
  2792.  
  2793. This variable conditionally defines the C<HAS_SEMGET> symbol, which
  2794. indicates to the C program that the semget() routine is available.
  2795.  
  2796. =item C<d_semop>
  2797.  
  2798. From F<d_semop.U>:
  2799.  
  2800. This variable conditionally defines the C<HAS_SEMOP> symbol, which
  2801. indicates to the C program that the semop() routine is available.
  2802.  
  2803. =item C<d_sendmsg>
  2804.  
  2805. From F<d_sendmsg.U>:
  2806.  
  2807. This variable conditionally defines the C<HAS_SENDMSG> symbol, which
  2808. indicates to the C program that the sendmsg() routine is available.
  2809.  
  2810. =item C<d_setegid>
  2811.  
  2812. From F<d_setegid.U>:
  2813.  
  2814. This variable conditionally defines the C<HAS_SETEGID> symbol, which
  2815. indicates to the C program that the setegid() routine is available
  2816. to change the effective gid of the current program.
  2817.  
  2818. =item C<d_seteuid>
  2819.  
  2820. From F<d_seteuid.U>:
  2821.  
  2822. This variable conditionally defines the C<HAS_SETEUID> symbol, which
  2823. indicates to the C program that the seteuid() routine is available
  2824. to change the effective uid of the current program.
  2825.  
  2826. =item C<d_setgrent>
  2827.  
  2828. From F<d_setgrent.U>:
  2829.  
  2830. This variable conditionally defines the C<HAS_SETGRENT> symbol, which
  2831. indicates to the C program that the setgrent() routine is available
  2832. for initializing sequential access to the group database.
  2833.  
  2834. =item C<d_setgrent_r>
  2835.  
  2836. From F<d_setgrent_r.U>:
  2837.  
  2838. This variable conditionally defines the C<HAS_SETGRENT_R> symbol,
  2839. which indicates to the C program that the setgrent_r()
  2840. routine is available.
  2841.  
  2842. =item C<d_setgrps>
  2843.  
  2844. From F<d_setgrps.U>:
  2845.  
  2846. This variable conditionally defines the C<HAS_SETGROUPS> symbol, which
  2847. indicates to the C program that the setgroups() routine is available
  2848. to set the list of process groups.
  2849.  
  2850. =item C<d_sethent>
  2851.  
  2852. From F<d_sethent.U>:
  2853.  
  2854. This variable conditionally defines C<HAS_SETHOSTENT> if sethostent() is
  2855. available.
  2856.  
  2857. =item C<d_sethostent_r>
  2858.  
  2859. From F<d_sethostent_r.U>:
  2860.  
  2861. This variable conditionally defines the C<HAS_SETHOSTENT_R> symbol,
  2862. which indicates to the C program that the sethostent_r()
  2863. routine is available.
  2864.  
  2865. =item C<d_setitimer>
  2866.  
  2867. From F<d_setitimer.U>:
  2868.  
  2869. This variable conditionally defines the C<HAS_SETITIMER> symbol, which
  2870. indicates to the C program that the setitimer() routine is available.
  2871.  
  2872. =item C<d_setlinebuf>
  2873.  
  2874. From F<d_setlnbuf.U>:
  2875.  
  2876. This variable conditionally defines the C<HAS_SETLINEBUF> symbol, which
  2877. indicates to the C program that the setlinebuf() routine is available
  2878. to change stderr or stdout from block-buffered or unbuffered to a
  2879. line-buffered mode.
  2880.  
  2881. =item C<d_setlocale>
  2882.  
  2883. From F<d_setlocale.U>:
  2884.  
  2885. This variable conditionally defines C<HAS_SETLOCALE> if setlocale() is
  2886. available to handle locale-specific ctype implementations.
  2887.  
  2888. =item C<d_setlocale_r>
  2889.  
  2890. From F<d_setlocale_r.U>:
  2891.  
  2892. This variable conditionally defines the C<HAS_SETLOCALE_R> symbol,
  2893. which indicates to the C program that the setlocale_r()
  2894. routine is available.
  2895.  
  2896. =item C<d_setnent>
  2897.  
  2898. From F<d_setnent.U>:
  2899.  
  2900. This variable conditionally defines C<HAS_SETNETENT> if setnetent() is
  2901. available.
  2902.  
  2903. =item C<d_setnetent_r>
  2904.  
  2905. From F<d_setnetent_r.U>:
  2906.  
  2907. This variable conditionally defines the C<HAS_SETNETENT_R> symbol,
  2908. which indicates to the C program that the setnetent_r()
  2909. routine is available.
  2910.  
  2911. =item C<d_setpent>
  2912.  
  2913. From F<d_setpent.U>:
  2914.  
  2915. This variable conditionally defines C<HAS_SETPROTOENT> if setprotoent() is
  2916. available.
  2917.  
  2918. =item C<d_setpgid>
  2919.  
  2920. From F<d_setpgid.U>:
  2921.  
  2922. This variable conditionally defines the C<HAS_SETPGID> symbol if the
  2923. setpgid(pid, gpid) function is available to set process group C<ID>.
  2924.  
  2925. =item C<d_setpgrp2>
  2926.  
  2927. From F<d_setpgrp2.U>:
  2928.  
  2929. This variable conditionally defines the HAS_SETPGRP2 symbol, which
  2930. indicates to the C program that the setpgrp2() (as in F<DG/C<UX>>) routine
  2931. is available to set the current process group.
  2932.  
  2933. =item C<d_setpgrp>
  2934.  
  2935. From F<d_setpgrp.U>:
  2936.  
  2937. This variable conditionally defines C<HAS_SETPGRP> if setpgrp() is
  2938. available to set the current process group.
  2939.  
  2940. =item C<d_setprior>
  2941.  
  2942. From F<d_setprior.U>:
  2943.  
  2944. This variable conditionally defines C<HAS_SETPRIORITY> if setpriority()
  2945. is available to set a process's priority.
  2946.  
  2947. =item C<d_setproctitle>
  2948.  
  2949. From F<d_setproctitle.U>:
  2950.  
  2951. This variable conditionally defines the C<HAS_SETPROCTITLE> symbol,
  2952. which indicates to the C program that the setproctitle() routine
  2953. is available.
  2954.  
  2955. =item C<d_setprotoent_r>
  2956.  
  2957. From F<d_setprotoent_r.U>:
  2958.  
  2959. This variable conditionally defines the C<HAS_SETPROTOENT_R> symbol,
  2960. which indicates to the C program that the setprotoent_r()
  2961. routine is available.
  2962.  
  2963. =item C<d_setpwent>
  2964.  
  2965. From F<d_setpwent.U>:
  2966.  
  2967. This variable conditionally defines the C<HAS_SETPWENT> symbol, which
  2968. indicates to the C program that the setpwent() routine is available
  2969. for initializing sequential access to the passwd database.
  2970.  
  2971. =item C<d_setpwent_r>
  2972.  
  2973. From F<d_setpwent_r.U>:
  2974.  
  2975. This variable conditionally defines the C<HAS_SETPWENT_R> symbol,
  2976. which indicates to the C program that the setpwent_r()
  2977. routine is available.
  2978.  
  2979. =item C<d_setregid>
  2980.  
  2981. From F<d_setregid.U>:
  2982.  
  2983. This variable conditionally defines C<HAS_SETREGID> if setregid() is
  2984. available to change the real and effective gid of the current
  2985. process.
  2986.  
  2987. =item C<d_setresgid>
  2988.  
  2989. From F<d_setregid.U>:
  2990.  
  2991. This variable conditionally defines C<HAS_SETRESGID> if setresgid() is
  2992. available to change the real, effective and saved gid of the current
  2993. process.
  2994.  
  2995. =item C<d_setresuid>
  2996.  
  2997. From F<d_setreuid.U>:
  2998.  
  2999. This variable conditionally defines C<HAS_SETREUID> if setresuid() is
  3000. available to change the real, effective and saved uid of the current
  3001. process.
  3002.  
  3003. =item C<d_setreuid>
  3004.  
  3005. From F<d_setreuid.U>:
  3006.  
  3007. This variable conditionally defines C<HAS_SETREUID> if setreuid() is
  3008. available to change the real and effective uid of the current
  3009. process.
  3010.  
  3011. =item C<d_setrgid>
  3012.  
  3013. From F<d_setrgid.U>:
  3014.  
  3015. This variable conditionally defines the C<HAS_SETRGID> symbol, which
  3016. indicates to the C program that the setrgid() routine is available
  3017. to change the real gid of the current program.
  3018.  
  3019. =item C<d_setruid>
  3020.  
  3021. From F<d_setruid.U>:
  3022.  
  3023. This variable conditionally defines the C<HAS_SETRUID> symbol, which
  3024. indicates to the C program that the setruid() routine is available
  3025. to change the real uid of the current program.
  3026.  
  3027. =item C<d_setsent>
  3028.  
  3029. From F<d_setsent.U>:
  3030.  
  3031. This variable conditionally defines C<HAS_SETSERVENT> if setservent() is
  3032. available.
  3033.  
  3034. =item C<d_setservent_r>
  3035.  
  3036. From F<d_setservent_r.U>:
  3037.  
  3038. This variable conditionally defines the C<HAS_SETSERVENT_R> symbol,
  3039. which indicates to the C program that the setservent_r()
  3040. routine is available.
  3041.  
  3042. =item C<d_setsid>
  3043.  
  3044. From F<d_setsid.U>:
  3045.  
  3046. This variable conditionally defines C<HAS_SETSID> if setsid() is
  3047. available to set the process group C<ID>.
  3048.  
  3049. =item C<d_setvbuf>
  3050.  
  3051. From F<d_setvbuf.U>:
  3052.  
  3053. This variable conditionally defines the C<HAS_SETVBUF> symbol, which
  3054. indicates to the C program that the setvbuf() routine is available
  3055. to change buffering on an open stdio stream.
  3056.  
  3057. =item C<d_sfio>
  3058.  
  3059. From F<d_sfio.U>:
  3060.  
  3061. This variable conditionally defines the C<USE_SFIO> symbol,
  3062. and indicates whether sfio is available (and should be used).
  3063.  
  3064. =item C<d_shm>
  3065.  
  3066. From F<d_shm.U>:
  3067.  
  3068. This variable conditionally defines the C<HAS_SHM> symbol, which
  3069. indicates that the entire shm*(2) library is present.
  3070.  
  3071. =item C<d_shmat>
  3072.  
  3073. From F<d_shmat.U>:
  3074.  
  3075. This variable conditionally defines the C<HAS_SHMAT> symbol, which
  3076. indicates to the C program that the shmat() routine is available.
  3077.  
  3078. =item C<d_shmatprototype>
  3079.  
  3080. From F<d_shmat.U>:
  3081.  
  3082. This variable conditionally defines the C<HAS_SHMAT_PROTOTYPE> 
  3083. symbol, which indicates that F<sys/shm.h> has a prototype for
  3084. shmat.
  3085.  
  3086. =item C<d_shmctl>
  3087.  
  3088. From F<d_shmctl.U>:
  3089.  
  3090. This variable conditionally defines the C<HAS_SHMCTL> symbol, which
  3091. indicates to the C program that the shmctl() routine is available.
  3092.  
  3093. =item C<d_shmdt>
  3094.  
  3095. From F<d_shmdt.U>:
  3096.  
  3097. This variable conditionally defines the C<HAS_SHMDT> symbol, which
  3098. indicates to the C program that the shmdt() routine is available.
  3099.  
  3100. =item C<d_shmget>
  3101.  
  3102. From F<d_shmget.U>:
  3103.  
  3104. This variable conditionally defines the C<HAS_SHMGET> symbol, which
  3105. indicates to the C program that the shmget() routine is available.
  3106.  
  3107. =item C<d_sigaction>
  3108.  
  3109. From F<d_sigaction.U>:
  3110.  
  3111. This variable conditionally defines the C<HAS_SIGACTION> symbol, which
  3112. indicates that the Vr4 sigaction() routine is available.
  3113.  
  3114. =item C<d_sigprocmask>
  3115.  
  3116. From F<d_sigprocmask.U>:
  3117.  
  3118. This variable conditionally defines C<HAS_SIGPROCMASK>
  3119. if sigprocmask() is available to examine or change the signal mask
  3120. of the calling process.
  3121.  
  3122. =item C<d_sigsetjmp>
  3123.  
  3124. From F<d_sigsetjmp.U>:
  3125.  
  3126. This variable conditionally defines the C<HAS_SIGSETJMP> symbol,
  3127. which indicates that the sigsetjmp() routine is available to
  3128. call setjmp() and optionally save the process's signal mask.
  3129.  
  3130. =item C<d_sockatmark>
  3131.  
  3132. From F<d_sockatmark.U>:
  3133.  
  3134. This variable conditionally defines the C<HAS_SOCKATMARK> symbol, which
  3135. indicates to the C program that the sockatmark() routine is available.
  3136.  
  3137. =item C<d_sockatmarkproto>
  3138.  
  3139. From F<d_sockatmarkproto.U>:
  3140.  
  3141. This variable conditionally defines the C<HAS_SOCKATMARK_PROTO> symbol,
  3142. which indicates to the C program that the system provides
  3143. a prototype for the sockatmark() function.  Otherwise, it is
  3144. up to the program to supply one.
  3145.  
  3146. =item C<d_socket>
  3147.  
  3148. From F<d_socket.U>:
  3149.  
  3150. This variable conditionally defines C<HAS_SOCKET>, which indicates
  3151. that the C<BSD> socket interface is supported.
  3152.  
  3153. =item C<d_socklen_t>
  3154.  
  3155. From F<d_socklen_t.U>:
  3156.  
  3157. This symbol will be defined if the C compiler supports socklen_t.
  3158.  
  3159. =item C<d_sockpair>
  3160.  
  3161. From F<d_socket.U>:
  3162.  
  3163. This variable conditionally defines the C<HAS_SOCKETPAIR> symbol, which
  3164. indicates that the C<BSD> socketpair() is supported.
  3165.  
  3166. =item C<d_socks5_init>
  3167.  
  3168. From F<d_socks5_init.U>:
  3169.  
  3170. This variable conditionally defines the HAS_SOCKS5_INIT symbol, which
  3171. indicates to the C program that the socks5_init() routine is available.
  3172.  
  3173. =item C<d_sqrtl>
  3174.  
  3175. From F<d_sqrtl.U>:
  3176.  
  3177. This variable conditionally defines the C<HAS_SQRTL> symbol, which
  3178. indicates to the C program that the sqrtl() routine is available.
  3179.  
  3180. =item C<d_srand48_r>
  3181.  
  3182. From F<d_srand48_r.U>:
  3183.  
  3184. This variable conditionally defines the HAS_SRAND48_R symbol,
  3185. which indicates to the C program that the srand48_r()
  3186. routine is available.
  3187.  
  3188. =item C<d_srandom_r>
  3189.  
  3190. From F<d_srandom_r.U>:
  3191.  
  3192. This variable conditionally defines the C<HAS_SRANDOM_R> symbol,
  3193. which indicates to the C program that the srandom_r()
  3194. routine is available.
  3195.  
  3196. =item C<d_sresgproto>
  3197.  
  3198. From F<d_sresgproto.U>:
  3199.  
  3200. This variable conditionally defines the C<HAS_SETRESGID_PROTO> symbol,
  3201. which indicates to the C program that the system provides
  3202. a prototype for the setresgid() function.  Otherwise, it is
  3203. up to the program to supply one.
  3204.  
  3205. =item C<d_sresuproto>
  3206.  
  3207. From F<d_sresuproto.U>:
  3208.  
  3209. This variable conditionally defines the C<HAS_SETRESUID_PROTO> symbol,
  3210. which indicates to the C program that the system provides
  3211. a prototype for the setresuid() function.  Otherwise, it is
  3212. up to the program to supply one.
  3213.  
  3214. =item C<d_statblks>
  3215.  
  3216. From F<d_statblks.U>:
  3217.  
  3218. This variable conditionally defines C<USE_STAT_BLOCKS>
  3219. if this system has a stat structure declaring
  3220. st_blksize and st_blocks.
  3221.  
  3222. =item C<d_statfs_f_flags>
  3223.  
  3224. From F<d_statfs_f_flags.U>:
  3225.  
  3226. This variable conditionally defines the C<HAS_STRUCT_STATFS_F_FLAGS>
  3227. symbol, which indicates to struct statfs from has f_flags member.
  3228. This kind of struct statfs is coming from F<sys/mount.h> (C<BSD>),
  3229. not from F<sys/statfs.h> (C<SYSV>).
  3230.  
  3231. =item C<d_statfs_s>
  3232.  
  3233. From F<d_statfs_s.U>:
  3234.  
  3235. This variable conditionally defines the C<HAS_STRUCT_STATFS> symbol,
  3236. which indicates that the struct statfs is supported.
  3237.  
  3238. =item C<d_statvfs>
  3239.  
  3240. From F<d_statvfs.U>:
  3241.  
  3242. This variable conditionally defines the C<HAS_STATVFS> symbol, which
  3243. indicates to the C program that the statvfs() routine is available.
  3244.  
  3245. =item C<d_stdio_cnt_lval>
  3246.  
  3247. From F<d_stdstdio.U>:
  3248.  
  3249. This variable conditionally defines C<STDIO_CNT_LVALUE> if the
  3250. C<FILE_cnt> macro can be used as an lvalue.
  3251.  
  3252. =item C<d_stdio_ptr_lval>
  3253.  
  3254. From F<d_stdstdio.U>:
  3255.  
  3256. This variable conditionally defines C<STDIO_PTR_LVALUE> if the
  3257. C<FILE_ptr> macro can be used as an lvalue.
  3258.  
  3259. =item C<d_stdio_ptr_lval_nochange_cnt>
  3260.  
  3261. From F<d_stdstdio.U>:
  3262.  
  3263. This symbol is defined if using the C<FILE_ptr> macro as an lvalue
  3264. to increase the pointer by n leaves File_cnt(fp) unchanged.
  3265.  
  3266. =item C<d_stdio_ptr_lval_sets_cnt>
  3267.  
  3268. From F<d_stdstdio.U>:
  3269.  
  3270. This symbol is defined if using the C<FILE_ptr> macro as an lvalue
  3271. to increase the pointer by n has the side effect of decreasing the
  3272. value of File_cnt(fp) by n.
  3273.  
  3274. =item C<d_stdio_stream_array>
  3275.  
  3276. From F<stdio_streams.U>:
  3277.  
  3278. This variable tells whether there is an array holding
  3279. the stdio streams.
  3280.  
  3281. =item C<d_stdiobase>
  3282.  
  3283. From F<d_stdstdio.U>:
  3284.  
  3285. This variable conditionally defines C<USE_STDIO_BASE> if this system
  3286. has a C<FILE> structure declaring a usable _base field (or equivalent)
  3287. in F<stdio.h>.
  3288.  
  3289. =item C<d_stdstdio>
  3290.  
  3291. From F<d_stdstdio.U>:
  3292.  
  3293. This variable conditionally defines C<USE_STDIO_PTR> if this system
  3294. has a C<FILE> structure declaring usable _ptr and _cnt fields (or
  3295. equivalent) in F<stdio.h>.
  3296.  
  3297. =item C<d_strchr>
  3298.  
  3299. From F<d_strchr.U>:
  3300.  
  3301. This variable conditionally defines C<HAS_STRCHR> if strchr() and
  3302. strrchr() are available for string searching.
  3303.  
  3304. =item C<d_strcoll>
  3305.  
  3306. From F<d_strcoll.U>:
  3307.  
  3308. This variable conditionally defines C<HAS_STRCOLL> if strcoll() is
  3309. available to compare strings using collating information.
  3310.  
  3311. =item C<d_strctcpy>
  3312.  
  3313. From F<d_strctcpy.U>:
  3314.  
  3315. This variable conditionally defines the C<USE_STRUCT_COPY> symbol, which
  3316. indicates to the C program that this C compiler knows how to copy
  3317. structures.
  3318.  
  3319. =item C<d_strerrm>
  3320.  
  3321. From F<d_strerror.U>:
  3322.  
  3323. This variable holds what Strerrr is defined as to translate an error
  3324. code condition into an error message string. It could be C<strerror>
  3325. or a more C<complex> macro emulating strrror with sys_errlist[], or the
  3326. C<unknown> string when both strerror and sys_errlist are missing.
  3327.  
  3328. =item C<d_strerror>
  3329.  
  3330. From F<d_strerror.U>:
  3331.  
  3332. This variable conditionally defines C<HAS_STRERROR> if strerror() is
  3333. available to translate error numbers to strings.
  3334.  
  3335. =item C<d_strerror_r>
  3336.  
  3337. From F<d_strerror_r.U>:
  3338.  
  3339. This variable conditionally defines the C<HAS_STRERROR_R> symbol,
  3340. which indicates to the C program that the strerror_r()
  3341. routine is available.
  3342.  
  3343. =item C<d_strftime>
  3344.  
  3345. From F<d_strftime.U>:
  3346.  
  3347. This variable conditionally defines the C<HAS_STRFTIME> symbol, which
  3348. indicates to the C program that the strftime() routine is available.
  3349.  
  3350. =item C<d_strlcat>
  3351.  
  3352. From F<d_strlcat.U>:
  3353.  
  3354. This variable conditionally defines the C<HAS_STRLCAT> symbol, which
  3355. indicates to the C program that the strlcat () routine is available.
  3356.  
  3357. =item C<d_strlcpy>
  3358.  
  3359. From F<d_strlcpy.U>:
  3360.  
  3361. This variable conditionally defines the C<HAS_STRLCPY> symbol, which
  3362. indicates to the C program that the strlcpy () routine is available.
  3363.  
  3364. =item C<d_strtod>
  3365.  
  3366. From F<d_strtod.U>:
  3367.  
  3368. This variable conditionally defines the C<HAS_STRTOD> symbol, which
  3369. indicates to the C program that the strtod() routine is available
  3370. to provide better numeric string conversion than atof().
  3371.  
  3372. =item C<d_strtol>
  3373.  
  3374. From F<d_strtol.U>:
  3375.  
  3376. This variable conditionally defines the C<HAS_STRTOL> symbol, which
  3377. indicates to the C program that the strtol() routine is available
  3378. to provide better numeric string conversion than atoi() and friends.
  3379.  
  3380. =item C<d_strtold>
  3381.  
  3382. From F<d_strtold.U>:
  3383.  
  3384. This variable conditionally defines the C<HAS_STRTOLD> symbol, which
  3385. indicates to the C program that the strtold() routine is available.
  3386.  
  3387. =item C<d_strtoll>
  3388.  
  3389. From F<d_strtoll.U>:
  3390.  
  3391. This variable conditionally defines the C<HAS_STRTOLL> symbol, which
  3392. indicates to the C program that the strtoll() routine is available.
  3393.  
  3394. =item C<d_strtoq>
  3395.  
  3396. From F<d_strtoq.U>:
  3397.  
  3398. This variable conditionally defines the C<HAS_STRTOQ> symbol, which
  3399. indicates to the C program that the strtoq() routine is available.
  3400.  
  3401. =item C<d_strtoul>
  3402.  
  3403. From F<d_strtoul.U>:
  3404.  
  3405. This variable conditionally defines the C<HAS_STRTOUL> symbol, which
  3406. indicates to the C program that the strtoul() routine is available
  3407. to provide conversion of strings to unsigned long.
  3408.  
  3409. =item C<d_strtoull>
  3410.  
  3411. From F<d_strtoull.U>:
  3412.  
  3413. This variable conditionally defines the C<HAS_STRTOULL> symbol, which
  3414. indicates to the C program that the strtoull() routine is available.
  3415.  
  3416. =item C<d_strtouq>
  3417.  
  3418. From F<d_strtouq.U>:
  3419.  
  3420. This variable conditionally defines the C<HAS_STRTOUQ> symbol, which
  3421. indicates to the C program that the strtouq() routine is available.
  3422.  
  3423. =item C<d_strxfrm>
  3424.  
  3425. From F<d_strxfrm.U>:
  3426.  
  3427. This variable conditionally defines C<HAS_STRXFRM> if strxfrm() is
  3428. available to transform strings.
  3429.  
  3430. =item C<d_suidsafe>
  3431.  
  3432. From F<d_dosuid.U>:
  3433.  
  3434. This variable conditionally defines C<SETUID_SCRIPTS_ARE_SECURE_NOW>
  3435. if setuid scripts can be secure.  This test looks in F</dev/fd/>.
  3436.  
  3437. =item C<d_symlink>
  3438.  
  3439. From F<d_symlink.U>:
  3440.  
  3441. This variable conditionally defines the C<HAS_SYMLINK> symbol, which
  3442. indicates to the C program that the symlink() routine is available
  3443. to create symbolic links.
  3444.  
  3445. =item C<d_syscall>
  3446.  
  3447. From F<d_syscall.U>:
  3448.  
  3449. This variable conditionally defines C<HAS_SYSCALL> if syscall() is
  3450. available call arbitrary system calls.
  3451.  
  3452. =item C<d_syscallproto>
  3453.  
  3454. From F<d_syscallproto.U>:
  3455.  
  3456. This variable conditionally defines the C<HAS_SYSCALL_PROTO> symbol,
  3457. which indicates to the C program that the system provides
  3458. a prototype for the syscall() function.  Otherwise, it is
  3459. up to the program to supply one.
  3460.  
  3461. =item C<d_sysconf>
  3462.  
  3463. From F<d_sysconf.U>:
  3464.  
  3465. This variable conditionally defines the C<HAS_SYSCONF> symbol, which
  3466. indicates to the C program that the sysconf() routine is available
  3467. to determine system related limits and options.
  3468.  
  3469. =item C<d_sysernlst>
  3470.  
  3471. From F<d_strerror.U>:
  3472.  
  3473. This variable conditionally defines C<HAS_SYS_ERRNOLIST> if sys_errnolist[]
  3474. is available to translate error numbers to the symbolic name.
  3475.  
  3476. =item C<d_syserrlst>
  3477.  
  3478. From F<d_strerror.U>:
  3479.  
  3480. This variable conditionally defines C<HAS_SYS_ERRLIST> if sys_errlist[] is
  3481. available to translate error numbers to strings.
  3482.  
  3483. =item C<d_system>
  3484.  
  3485. From F<d_system.U>:
  3486.  
  3487. This variable conditionally defines C<HAS_SYSTEM> if system() is
  3488. available to issue a shell command.
  3489.  
  3490. =item C<d_tcgetpgrp>
  3491.  
  3492. From F<d_tcgtpgrp.U>:
  3493.  
  3494. This variable conditionally defines the C<HAS_TCGETPGRP> symbol, which
  3495. indicates to the C program that the tcgetpgrp() routine is available.
  3496. to get foreground process group C<ID>.
  3497.  
  3498. =item C<d_tcsetpgrp>
  3499.  
  3500. From F<d_tcstpgrp.U>:
  3501.  
  3502. This variable conditionally defines the C<HAS_TCSETPGRP> symbol, which
  3503. indicates to the C program that the tcsetpgrp() routine is available
  3504. to set foreground process group C<ID>.
  3505.  
  3506. =item C<d_telldir>
  3507.  
  3508. From F<d_readdir.U>:
  3509.  
  3510. This variable conditionally defines C<HAS_TELLDIR> if telldir() is
  3511. available.
  3512.  
  3513. =item C<d_telldirproto>
  3514.  
  3515. From F<d_telldirproto.U>:
  3516.  
  3517. This variable conditionally defines the C<HAS_TELLDIR_PROTO> symbol,
  3518. which indicates to the C program that the system provides
  3519. a prototype for the telldir() function.  Otherwise, it is
  3520. up to the program to supply one.
  3521.  
  3522. =item C<d_time>
  3523.  
  3524. From F<d_time.U>:
  3525.  
  3526. This variable conditionally defines the C<HAS_TIME> symbol, which indicates
  3527. that the time() routine exists.  The time() routine is normaly
  3528. provided on C<UNIX> systems.
  3529.  
  3530. =item C<d_times>
  3531.  
  3532. From F<d_times.U>:
  3533.  
  3534. This variable conditionally defines the C<HAS_TIMES> symbol, which indicates
  3535. that the times() routine exists.  The times() routine is normaly
  3536. provided on C<UNIX> systems. You may have to include <sys/times.h>.
  3537.  
  3538. =item C<d_tm_tm_gmtoff>
  3539.  
  3540. From F<i_time.U>:
  3541.  
  3542. This variable conditionally defines C<HAS_TM_TM_GMTOFF>, which indicates
  3543. indicates to the C program that the struct tm has the tm_gmtoff field.
  3544.  
  3545. =item C<d_tm_tm_zone>
  3546.  
  3547. From F<i_time.U>:
  3548.  
  3549. This variable conditionally defines C<HAS_TM_TM_ZONE>, which indicates
  3550. indicates to the C program that the struct tm has the tm_zone field.
  3551.  
  3552. =item C<d_tmpnam_r>
  3553.  
  3554. From F<d_tmpnam_r.U>:
  3555.  
  3556. This variable conditionally defines the C<HAS_TMPNAM_R> symbol,
  3557. which indicates to the C program that the tmpnam_r()
  3558. routine is available.
  3559.  
  3560. =item C<d_truncate>
  3561.  
  3562. From F<d_truncate.U>:
  3563.  
  3564. This variable conditionally defines C<HAS_TRUNCATE> if truncate() is
  3565. available to truncate files.
  3566.  
  3567. =item C<d_ttyname_r>
  3568.  
  3569. From F<d_ttyname_r.U>:
  3570.  
  3571. This variable conditionally defines the C<HAS_TTYNAME_R> symbol,
  3572. which indicates to the C program that the ttyname_r()
  3573. routine is available.
  3574.  
  3575. =item C<d_tzname>
  3576.  
  3577. From F<d_tzname.U>:
  3578.  
  3579. This variable conditionally defines C<HAS_TZNAME> if tzname[] is
  3580. available to access timezone names.
  3581.  
  3582. =item C<d_u32align>
  3583.  
  3584. From F<d_u32align.U>:
  3585.  
  3586. This variable tells whether you must access character data
  3587. through U32-aligned pointers.
  3588.  
  3589. =item C<d_ualarm>
  3590.  
  3591. From F<d_ualarm.U>:
  3592.  
  3593. This variable conditionally defines the C<HAS_UALARM> symbol, which
  3594. indicates to the C program that the ualarm() routine is available.
  3595.  
  3596. =item C<d_umask>
  3597.  
  3598. From F<d_umask.U>:
  3599.  
  3600. This variable conditionally defines the C<HAS_UMASK> symbol, which
  3601. indicates to the C program that the umask() routine is available.
  3602. to set and get the value of the file creation mask.
  3603.  
  3604. =item C<d_uname>
  3605.  
  3606. From F<d_gethname.U>:
  3607.  
  3608. This variable conditionally defines the C<HAS_UNAME> symbol, which
  3609. indicates to the C program that the uname() routine may be
  3610. used to derive the host name.
  3611.  
  3612. =item C<d_union_semun>
  3613.  
  3614. From F<d_union_semun.U>:
  3615.  
  3616. This variable conditionally defines C<HAS_UNION_SEMUN> if the
  3617. union semun is defined by including <sys/sem.h>.
  3618.  
  3619. =item C<d_unordered>
  3620.  
  3621. From F<d_unordered.U>:
  3622.  
  3623. This variable conditionally defines the C<HAS_UNORDERED> symbol, which
  3624. indicates to the C program that the unordered() routine is available.
  3625.  
  3626. =item C<d_usleep>
  3627.  
  3628. From F<d_usleep.U>:
  3629.  
  3630. This variable conditionally defines C<HAS_USLEEP> if usleep() is
  3631. available to do high granularity sleeps.
  3632.  
  3633. =item C<d_usleepproto>
  3634.  
  3635. From F<d_usleepproto.U>:
  3636.  
  3637. This variable conditionally defines the C<HAS_USLEEP_PROTO> symbol,
  3638. which indicates to the C program that the system provides
  3639. a prototype for the usleep() function.  Otherwise, it is
  3640. up to the program to supply one.
  3641.  
  3642. =item C<d_ustat>
  3643.  
  3644. From F<d_ustat.U>:
  3645.  
  3646. This variable conditionally defines C<HAS_USTAT> if ustat() is
  3647. available to query file system statistics by dev_t.
  3648.  
  3649. =item C<d_vendorarch>
  3650.  
  3651. From F<vendorarch.U>:
  3652.  
  3653. This variable conditionally defined C<PERL_VENDORARCH>.
  3654.  
  3655. =item C<d_vendorbin>
  3656.  
  3657. From F<vendorbin.U>:
  3658.  
  3659. This variable conditionally defines C<PERL_VENDORBIN>.
  3660.  
  3661. =item C<d_vendorlib>
  3662.  
  3663. From F<vendorlib.U>:
  3664.  
  3665. This variable conditionally defines C<PERL_VENDORLIB>.
  3666.  
  3667. =item C<d_vendorscript>
  3668.  
  3669. From F<vendorscript.U>:
  3670.  
  3671. This variable conditionally defines C<PERL_VENDORSCRIPT>.
  3672.  
  3673. =item C<d_vfork>
  3674.  
  3675. From F<d_vfork.U>:
  3676.  
  3677. This variable conditionally defines the C<HAS_VFORK> symbol, which
  3678. indicates the vfork() routine is available.
  3679.  
  3680. =item C<d_void_closedir>
  3681.  
  3682. From F<d_closedir.U>:
  3683.  
  3684. This variable conditionally defines C<VOID_CLOSEDIR> if closedir()
  3685. does not return a value.
  3686.  
  3687. =item C<d_voidsig>
  3688.  
  3689. From F<d_voidsig.U>:
  3690.  
  3691. This variable conditionally defines C<VOIDSIG> if this system
  3692. declares "void (*signal(...))()" in F<signal.h>.  The old way was to
  3693. declare it as "int (*signal(...))()".
  3694.  
  3695. =item C<d_voidtty>
  3696.  
  3697. From F<i_sysioctl.U>:
  3698.  
  3699. This variable conditionally defines C<USE_IOCNOTTY> to indicate that the
  3700. ioctl() call with C<TIOCNOTTY> should be used to void tty association.
  3701. Otherwise (on C<USG> probably), it is enough to close the standard file
  3702. decriptors and do a setpgrp().
  3703.  
  3704. =item C<d_volatile>
  3705.  
  3706. From F<d_volatile.U>:
  3707.  
  3708. This variable conditionally defines the C<HASVOLATILE> symbol, which
  3709. indicates to the C program that this C compiler knows about the
  3710. volatile declaration.
  3711.  
  3712. =item C<d_vprintf>
  3713.  
  3714. From F<d_vprintf.U>:
  3715.  
  3716. This variable conditionally defines the C<HAS_VPRINTF> symbol, which
  3717. indicates to the C program that the vprintf() routine is available
  3718. to printf with a pointer to an argument list.
  3719.  
  3720. =item C<d_wait4>
  3721.  
  3722. From F<d_wait4.U>:
  3723.  
  3724. This variable conditionally defines the HAS_WAIT4 symbol, which
  3725. indicates the wait4() routine is available.
  3726.  
  3727. =item C<d_waitpid>
  3728.  
  3729. From F<d_waitpid.U>:
  3730.  
  3731. This variable conditionally defines C<HAS_WAITPID> if waitpid() is
  3732. available to wait for child process.
  3733.  
  3734. =item C<d_wcstombs>
  3735.  
  3736. From F<d_wcstombs.U>:
  3737.  
  3738. This variable conditionally defines the C<HAS_WCSTOMBS> symbol, which
  3739. indicates to the C program that the wcstombs() routine is available
  3740. to convert wide character strings to multibyte strings.
  3741.  
  3742. =item C<d_wctomb>
  3743.  
  3744. From F<d_wctomb.U>:
  3745.  
  3746. This variable conditionally defines the C<HAS_WCTOMB> symbol, which
  3747. indicates to the C program that the wctomb() routine is available
  3748. to convert a wide character to a multibyte.
  3749.  
  3750. =item C<d_writev>
  3751.  
  3752. From F<d_writev.U>:
  3753.  
  3754. This variable conditionally defines the C<HAS_WRITEV> symbol, which
  3755. indicates to the C program that the writev() routine is available.
  3756.  
  3757. =item C<d_xenix>
  3758.  
  3759. From F<Guess.U>:
  3760.  
  3761. This variable conditionally defines the symbol C<XENIX>, which alerts
  3762. the C program that it runs under Xenix.
  3763.  
  3764. =item C<date>
  3765.  
  3766. From F<Loc.U>:
  3767.  
  3768. This variable is used internally by Configure to determine the
  3769. full pathname (if any) of the date program.  After Configure runs,
  3770. the value is reset to a plain C<date> and is not useful.
  3771.  
  3772. =item C<db_hashtype>
  3773.  
  3774. From F<i_db.U>:
  3775.  
  3776. This variable contains the type of the hash structure element
  3777. in the <db.h> header file.  In older versions of C<DB>, it was
  3778. int, while in newer ones it is u_int32_t.
  3779.  
  3780. =item C<db_prefixtype>
  3781.  
  3782. From F<i_db.U>:
  3783.  
  3784. This variable contains the type of the prefix structure element
  3785. in the <db.h> header file.  In older versions of C<DB>, it was
  3786. int, while in newer ones it is size_t.
  3787.  
  3788. =item C<db_version_major>
  3789.  
  3790. From F<i_db.U>:
  3791.  
  3792. This variable contains the major version number of
  3793. Berkeley C<DB> found in the <db.h> header file.
  3794.  
  3795. =item C<db_version_minor>
  3796.  
  3797. From F<i_db.U>:
  3798.  
  3799. This variable contains the minor version number of
  3800. Berkeley C<DB> found in the <db.h> header file.
  3801. For C<DB> version 1 this is always 0.
  3802.  
  3803. =item C<db_version_patch>
  3804.  
  3805. From F<i_db.U>:
  3806.  
  3807. This variable contains the patch version number of
  3808. Berkeley C<DB> found in the <db.h> header file.
  3809. For C<DB> version 1 this is always 0.
  3810.  
  3811. =item C<defvoidused>
  3812.  
  3813. From F<voidflags.U>:
  3814.  
  3815. This variable contains the default value of the C<VOIDUSED> symbol (15).
  3816.  
  3817. =item C<direntrytype>
  3818.  
  3819. From F<i_dirent.U>:
  3820.  
  3821. This symbol is set to C<struct direct> or C<struct dirent> depending on
  3822. whether dirent is available or not. You should use this pseudo type to
  3823. portably declare your directory entries.
  3824.  
  3825. =item C<dlext>
  3826.  
  3827. From F<dlext.U>:
  3828.  
  3829. This variable contains the extension that is to be used for the
  3830. dynamically loaded modules that perl generaties.
  3831.  
  3832. =item C<dlsrc>
  3833.  
  3834. From F<dlsrc.U>:
  3835.  
  3836. This variable contains the name of the dynamic loading file that
  3837. will be used with the package.
  3838.  
  3839. =item C<doublesize>
  3840.  
  3841. From F<doublesize.U>:
  3842.  
  3843. This variable contains the value of the C<DOUBLESIZE> symbol, which
  3844. indicates to the C program how many bytes there are in a double.
  3845.  
  3846. =item C<drand01>
  3847.  
  3848. From F<randfunc.U>:
  3849.  
  3850. Indicates the macro to be used to generate normalized
  3851. random numbers.  Uses randfunc, often divided by
  3852. (double) (((unsigned long) 1 << randbits)) in order to
  3853. normalize the result.
  3854. In C programs, the macro C<Drand01> is mapped to drand01.
  3855.  
  3856. =item C<drand48_r_proto>
  3857.  
  3858. From F<d_drand48_r.U>:
  3859.  
  3860. This variable encodes the prototype of drand48_r.
  3861. It is zero if d_drand48_r is undef, and one of the
  3862. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_drand48_r
  3863. is defined.
  3864.  
  3865. =item C<dynamic_ext>
  3866.  
  3867. From F<Extensions.U>:
  3868.  
  3869. This variable holds a list of C<XS> extension files we want to
  3870. link dynamically into the package.  It is used by Makefile.
  3871.  
  3872. =back
  3873.  
  3874. =head2 e
  3875.  
  3876. =over 4
  3877.  
  3878. =item C<eagain>
  3879.  
  3880. From F<nblock_io.U>:
  3881.  
  3882. This variable bears the symbolic errno code set by read() when no
  3883. data is present on the file and non-blocking I/O was enabled (otherwise,
  3884. read() blocks naturally).
  3885.  
  3886. =item C<ebcdic>
  3887.  
  3888. From F<ebcdic.U>:
  3889.  
  3890. This variable conditionally defines C<EBCDIC> if this
  3891. system uses C<EBCDIC> encoding.  Among other things, this
  3892. means that the character ranges are not contiguous.
  3893. See F<trnl.U>
  3894.  
  3895. =item C<echo>
  3896.  
  3897. From F<Loc.U>:
  3898.  
  3899. This variable is used internally by Configure to determine the
  3900. full pathname (if any) of the echo program.  After Configure runs,
  3901. the value is reset to a plain C<echo> and is not useful.
  3902.  
  3903. =item C<egrep>
  3904.  
  3905. From F<Loc.U>:
  3906.  
  3907. This variable is used internally by Configure to determine the
  3908. full pathname (if any) of the egrep program.  After Configure runs,
  3909. the value is reset to a plain C<egrep> and is not useful.
  3910.  
  3911. =item C<emacs>
  3912.  
  3913. From F<Loc.U>:
  3914.  
  3915. This variable is defined but not used by Configure.
  3916. The value is a plain '' and is not useful.
  3917.  
  3918. =item C<endgrent_r_proto>
  3919.  
  3920. From F<d_endgrent_r.U>:
  3921.  
  3922. This variable encodes the prototype of endgrent_r.
  3923. It is zero if d_endgrent_r is undef, and one of the
  3924. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endgrent_r
  3925. is defined.
  3926.  
  3927. =item C<endhostent_r_proto>
  3928.  
  3929. From F<d_endhostent_r.U>:
  3930.  
  3931. This variable encodes the prototype of endhostent_r.
  3932. It is zero if d_endhostent_r is undef, and one of the
  3933. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endhostent_r
  3934. is defined.
  3935.  
  3936. =item C<endnetent_r_proto>
  3937.  
  3938. From F<d_endnetent_r.U>:
  3939.  
  3940. This variable encodes the prototype of endnetent_r.
  3941. It is zero if d_endnetent_r is undef, and one of the
  3942. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endnetent_r
  3943. is defined.
  3944.  
  3945. =item C<endprotoent_r_proto>
  3946.  
  3947. From F<d_endprotoent_r.U>:
  3948.  
  3949. This variable encodes the prototype of endprotoent_r.
  3950. It is zero if d_endprotoent_r is undef, and one of the
  3951. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endprotoent_r
  3952. is defined.
  3953.  
  3954. =item C<endpwent_r_proto>
  3955.  
  3956. From F<d_endpwent_r.U>:
  3957.  
  3958. This variable encodes the prototype of endpwent_r.
  3959. It is zero if d_endpwent_r is undef, and one of the
  3960. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endpwent_r
  3961. is defined.
  3962.  
  3963. =item C<endservent_r_proto>
  3964.  
  3965. From F<d_endservent_r.U>:
  3966.  
  3967. This variable encodes the prototype of endservent_r.
  3968. It is zero if d_endservent_r is undef, and one of the
  3969. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_endservent_r
  3970. is defined.
  3971.  
  3972. =item C<eunicefix>
  3973.  
  3974. From F<Init.U>:
  3975.  
  3976. When running under Eunice this variable contains a command which will
  3977. convert a shell script to the proper form of text file for it to be
  3978. executable by the shell.  On other systems it is a no-op.
  3979.  
  3980. =item C<exe_ext>
  3981.  
  3982. From F<Unix.U>:
  3983.  
  3984. This is an old synonym for _exe.
  3985.  
  3986. =item C<expr>
  3987.  
  3988. From F<Loc.U>:
  3989.  
  3990. This variable is used internally by Configure to determine the
  3991. full pathname (if any) of the expr program.  After Configure runs,
  3992. the value is reset to a plain C<expr> and is not useful.
  3993.  
  3994. =item C<extensions>
  3995.  
  3996. From F<Extensions.U>:
  3997.  
  3998. This variable holds a list of all extension files (both C<XS> and
  3999. non-xs linked into the package.  It is propagated to F<Config.pm>
  4000. and is typically used to test whether a particular extesion 
  4001. is available.
  4002.  
  4003. =item C<extras>
  4004.  
  4005. From F<Extras.U>:
  4006.  
  4007. This variable holds a list of extra modules to install.
  4008.  
  4009. =back
  4010.  
  4011. =head2 f
  4012.  
  4013. =over 4
  4014.  
  4015. =item C<fflushall>
  4016.  
  4017. From F<fflushall.U>:
  4018.  
  4019. This symbol, if defined, tells that to flush
  4020. all pending stdio output one must loop through all
  4021. the stdio file handles stored in an array and fflush them.
  4022. Note that if fflushNULL is defined, fflushall will not
  4023. even be probed for and will be left undefined.
  4024.  
  4025. =item C<fflushNULL>
  4026.  
  4027. From F<fflushall.U>:
  4028.  
  4029. This symbol, if defined, tells that fflush(C<NULL>) does flush
  4030. all pending stdio output.
  4031.  
  4032. =item C<find>
  4033.  
  4034. From F<Loc.U>:
  4035.  
  4036. This variable is defined but not used by Configure.
  4037. The value is a plain '' and is not useful.
  4038.  
  4039. =item C<firstmakefile>
  4040.  
  4041. From F<Unix.U>:
  4042.  
  4043. This variable defines the first file searched by make.  On unix,
  4044. it is makefile (then Makefile).  On case-insensitive systems,
  4045. it might be something else.  This is only used to deal with
  4046. convoluted make depend tricks.
  4047.  
  4048. =item C<flex>
  4049.  
  4050. From F<Loc.U>:
  4051.  
  4052. This variable is defined but not used by Configure.
  4053. The value is a plain '' and is not useful.
  4054.  
  4055. =item C<fpossize>
  4056.  
  4057. From F<fpossize.U>:
  4058.  
  4059. This variable contains the size of a fpostype in bytes.
  4060.  
  4061. =item C<fpostype>
  4062.  
  4063. From F<fpostype.U>:
  4064.  
  4065. This variable defines Fpos_t to be something like fpos_t, long, 
  4066. uint, or whatever type is used to declare file positions in libc.
  4067.  
  4068. =item C<freetype>
  4069.  
  4070. From F<mallocsrc.U>:
  4071.  
  4072. This variable contains the return type of free().  It is usually
  4073. void, but occasionally int.
  4074.  
  4075. =item C<from>
  4076.  
  4077. From F<Cross.U>:
  4078.  
  4079. This variable contains the command used by Configure
  4080. to copy files from the target host.  Useful and available
  4081. only during Perl build.
  4082. The string C<:> if not cross-compiling.
  4083.  
  4084. =item C<full_ar>
  4085.  
  4086. From F<Loc_ar.U>:
  4087.  
  4088. This variable contains the full pathname to C<ar>, whether or
  4089. not the user has specified C<portability>.  This is only used
  4090. in the F<Makefile.SH>.
  4091.  
  4092. =item C<full_csh>
  4093.  
  4094. From F<d_csh.U>:
  4095.  
  4096. This variable contains the full pathname to C<csh>, whether or
  4097. not the user has specified C<portability>.  This is only used
  4098. in the compiled C program, and we assume that all systems which
  4099. can share this executable will have the same full pathname to
  4100. F<csh.>
  4101.  
  4102. =item C<full_sed>
  4103.  
  4104. From F<Loc_sed.U>:
  4105.  
  4106. This variable contains the full pathname to C<sed>, whether or
  4107. not the user has specified C<portability>.  This is only used
  4108. in the compiled C program, and we assume that all systems which
  4109. can share this executable will have the same full pathname to
  4110. F<sed.>
  4111.  
  4112. =back
  4113.  
  4114. =head2 g
  4115.  
  4116. =over 4
  4117.  
  4118. =item C<gccansipedantic>
  4119.  
  4120. From F<gccvers.U>:
  4121.  
  4122. If C<GNU> cc (gcc) is used, this variable will enable (if set) the
  4123. -ansi and -pedantic ccflags for building core files (through
  4124. cflags script). (See F<Porting/pumpkin.pod> for full description).
  4125.  
  4126. =item C<gccosandvers>
  4127.  
  4128. From F<gccvers.U>:
  4129.  
  4130. If C<GNU> cc (gcc) is used, this variable holds the operating system
  4131. and version used to compile gcc.  It is set to '' if not gcc,
  4132. or if nothing useful can be parsed as the os version.
  4133.  
  4134. =item C<gccversion>
  4135.  
  4136. From F<gccvers.U>:
  4137.  
  4138. If C<GNU> cc (gcc) is used, this variable holds C<1> or C<2> to
  4139. indicate whether the compiler is version 1 or 2.  This is used in
  4140. setting some of the default cflags.  It is set to '' if not gcc.
  4141.  
  4142. =item C<getgrent_r_proto>
  4143.  
  4144. From F<d_getgrent_r.U>:
  4145.  
  4146. This variable encodes the prototype of getgrent_r.
  4147. It is zero if d_getgrent_r is undef, and one of the
  4148. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrent_r
  4149. is defined.
  4150.  
  4151. =item C<getgrgid_r_proto>
  4152.  
  4153. From F<d_getgrgid_r.U>:
  4154.  
  4155. This variable encodes the prototype of getgrgid_r.
  4156. It is zero if d_getgrgid_r is undef, and one of the
  4157. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrgid_r
  4158. is defined.
  4159.  
  4160. =item C<getgrnam_r_proto>
  4161.  
  4162. From F<d_getgrnam_r.U>:
  4163.  
  4164. This variable encodes the prototype of getgrnam_r.
  4165. It is zero if d_getgrnam_r is undef, and one of the
  4166. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getgrnam_r
  4167. is defined.
  4168.  
  4169. =item C<gethostbyaddr_r_proto>
  4170.  
  4171. From F<d_gethostbyaddr_r.U>:
  4172.  
  4173. This variable encodes the prototype of gethostbyaddr_r.
  4174. It is zero if d_gethostbyaddr_r is undef, and one of the
  4175. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostbyaddr_r
  4176. is defined.
  4177.  
  4178. =item C<gethostbyname_r_proto>
  4179.  
  4180. From F<d_gethostbyname_r.U>:
  4181.  
  4182. This variable encodes the prototype of gethostbyname_r.
  4183. It is zero if d_gethostbyname_r is undef, and one of the
  4184. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostbyname_r
  4185. is defined.
  4186.  
  4187. =item C<gethostent_r_proto>
  4188.  
  4189. From F<d_gethostent_r.U>:
  4190.  
  4191. This variable encodes the prototype of gethostent_r.
  4192. It is zero if d_gethostent_r is undef, and one of the
  4193. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gethostent_r
  4194. is defined.
  4195.  
  4196. =item C<getlogin_r_proto>
  4197.  
  4198. From F<d_getlogin_r.U>:
  4199.  
  4200. This variable encodes the prototype of getlogin_r.
  4201. It is zero if d_getlogin_r is undef, and one of the
  4202. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getlogin_r
  4203. is defined.
  4204.  
  4205. =item C<getnetbyaddr_r_proto>
  4206.  
  4207. From F<d_getnetbyaddr_r.U>:
  4208.  
  4209. This variable encodes the prototype of getnetbyaddr_r.
  4210. It is zero if d_getnetbyaddr_r is undef, and one of the
  4211. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetbyaddr_r
  4212. is defined.
  4213.  
  4214. =item C<getnetbyname_r_proto>
  4215.  
  4216. From F<d_getnetbyname_r.U>:
  4217.  
  4218. This variable encodes the prototype of getnetbyname_r.
  4219. It is zero if d_getnetbyname_r is undef, and one of the
  4220. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetbyname_r
  4221. is defined.
  4222.  
  4223. =item C<getnetent_r_proto>
  4224.  
  4225. From F<d_getnetent_r.U>:
  4226.  
  4227. This variable encodes the prototype of getnetent_r.
  4228. It is zero if d_getnetent_r is undef, and one of the
  4229. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getnetent_r
  4230. is defined.
  4231.  
  4232. =item C<getprotobyname_r_proto>
  4233.  
  4234. From F<d_getprotobyname_r.U>:
  4235.  
  4236. This variable encodes the prototype of getprotobyname_r.
  4237. It is zero if d_getprotobyname_r is undef, and one of the
  4238. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotobyname_r
  4239. is defined.
  4240.  
  4241. =item C<getprotobynumber_r_proto>
  4242.  
  4243. From F<d_getprotobynumber_r.U>:
  4244.  
  4245. This variable encodes the prototype of getprotobynumber_r.
  4246. It is zero if d_getprotobynumber_r is undef, and one of the
  4247. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotobynumber_r
  4248. is defined.
  4249.  
  4250. =item C<getprotoent_r_proto>
  4251.  
  4252. From F<d_getprotoent_r.U>:
  4253.  
  4254. This variable encodes the prototype of getprotoent_r.
  4255. It is zero if d_getprotoent_r is undef, and one of the
  4256. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getprotoent_r
  4257. is defined.
  4258.  
  4259. =item C<getpwent_r_proto>
  4260.  
  4261. From F<d_getpwent_r.U>:
  4262.  
  4263. This variable encodes the prototype of getpwent_r.
  4264. It is zero if d_getpwent_r is undef, and one of the
  4265. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwent_r
  4266. is defined.
  4267.  
  4268. =item C<getpwnam_r_proto>
  4269.  
  4270. From F<d_getpwnam_r.U>:
  4271.  
  4272. This variable encodes the prototype of getpwnam_r.
  4273. It is zero if d_getpwnam_r is undef, and one of the
  4274. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwnam_r
  4275. is defined.
  4276.  
  4277. =item C<getpwuid_r_proto>
  4278.  
  4279. From F<d_getpwuid_r.U>:
  4280.  
  4281. This variable encodes the prototype of getpwuid_r.
  4282. It is zero if d_getpwuid_r is undef, and one of the
  4283. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getpwuid_r
  4284. is defined.
  4285.  
  4286. =item C<getservbyname_r_proto>
  4287.  
  4288. From F<d_getservbyname_r.U>:
  4289.  
  4290. This variable encodes the prototype of getservbyname_r.
  4291. It is zero if d_getservbyname_r is undef, and one of the
  4292. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservbyname_r
  4293. is defined.
  4294.  
  4295. =item C<getservbyport_r_proto>
  4296.  
  4297. From F<d_getservbyport_r.U>:
  4298.  
  4299. This variable encodes the prototype of getservbyport_r.
  4300. It is zero if d_getservbyport_r is undef, and one of the
  4301. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservbyport_r
  4302. is defined.
  4303.  
  4304. =item C<getservent_r_proto>
  4305.  
  4306. From F<d_getservent_r.U>:
  4307.  
  4308. This variable encodes the prototype of getservent_r.
  4309. It is zero if d_getservent_r is undef, and one of the
  4310. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getservent_r
  4311. is defined.
  4312.  
  4313. =item C<getspnam_r_proto>
  4314.  
  4315. From F<d_getspnam_r.U>:
  4316.  
  4317. This variable encodes the prototype of getspnam_r.
  4318. It is zero if d_getspnam_r is undef, and one of the
  4319. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_getspnam_r
  4320. is defined.
  4321.  
  4322. =item C<gidformat>
  4323.  
  4324. From F<gidf.U>:
  4325.  
  4326. This variable contains the format string used for printing a Gid_t.
  4327.  
  4328. =item C<gidsign>
  4329.  
  4330. From F<gidsign.U>:
  4331.  
  4332. This variable contains the signedness of a gidtype.
  4333. 1 for unsigned, -1 for signed.
  4334.  
  4335. =item C<gidsize>
  4336.  
  4337. From F<gidsize.U>:
  4338.  
  4339. This variable contains the size of a gidtype in bytes.
  4340.  
  4341. =item C<gidtype>
  4342.  
  4343. From F<gidtype.U>:
  4344.  
  4345. This variable defines Gid_t to be something like gid_t, int,
  4346. ushort, or whatever type is used to declare the return type
  4347. of getgid().  Typically, it is the type of group ids in the kernel.
  4348.  
  4349. =item C<glibpth>
  4350.  
  4351. From F<libpth.U>:
  4352.  
  4353. This variable holds the general path (space-separated) used to
  4354. find libraries.  It may contain directories that do not exist on
  4355. this platform, libpth is the cleaned-up version.
  4356.  
  4357. =item C<gmake>
  4358.  
  4359. From F<Loc.U>:
  4360.  
  4361. This variable is used internally by Configure to determine the
  4362. full pathname (if any) of the gmake program.  After Configure runs,
  4363. the value is reset to a plain C<gmake> and is not useful.
  4364.  
  4365. =item C<gmtime_r_proto>
  4366.  
  4367. From F<d_gmtime_r.U>:
  4368.  
  4369. This variable encodes the prototype of gmtime_r.
  4370. It is zero if d_gmtime_r is undef, and one of the
  4371. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_gmtime_r
  4372. is defined.
  4373.  
  4374. =item C<gnulibc_version>
  4375.  
  4376. From F<d_gnulibc.U>:
  4377.  
  4378. This variable contains the version number of the C<GNU> C library.
  4379. It is usually something like F<2.2.5>.  It is a plain '' if this
  4380. is not the C<GNU> C library, or if the version is unknown.
  4381.  
  4382. =item C<grep>
  4383.  
  4384. From F<Loc.U>:
  4385.  
  4386. This variable is used internally by Configure to determine the
  4387. full pathname (if any) of the grep program.  After Configure runs,
  4388. the value is reset to a plain C<grep> and is not useful.
  4389.  
  4390. =item C<groupcat>
  4391.  
  4392. From F<nis.U>:
  4393.  
  4394. This variable contains a command that produces the text of the
  4395. F</etc/group> file.  This is normally "cat F</etc/group>", but can be
  4396. "ypcat group" when C<NIS> is used.
  4397. On some systems, such as os390, there may be no equivalent
  4398. command, in which case this variable is unset.
  4399.  
  4400. =item C<groupstype>
  4401.  
  4402. From F<groupstype.U>:
  4403.  
  4404. This variable defines Groups_t to be something like gid_t, int, 
  4405. ushort, or whatever type is used for the second argument to
  4406. getgroups() and setgroups().  Usually, this is the same as
  4407. gidtype (gid_t), but sometimes it isn't.
  4408.  
  4409. =item C<gzip>
  4410.  
  4411. From F<Loc.U>:
  4412.  
  4413. This variable is used internally by Configure to determine the
  4414. full pathname (if any) of the gzip program.  After Configure runs,
  4415. the value is reset to a plain C<gzip> and is not useful.
  4416.  
  4417. =back
  4418.  
  4419. =head2 h
  4420.  
  4421. =over 4
  4422.  
  4423. =item C<h_fcntl>
  4424.  
  4425. From F<h_fcntl.U>:
  4426.  
  4427. This is variable gets set in various places to tell i_fcntl that
  4428. <fcntl.h> should be included.
  4429.  
  4430. =item C<h_sysfile>
  4431.  
  4432. From F<h_sysfile.U>:
  4433.  
  4434. This is variable gets set in various places to tell i_sys_file that
  4435. <sys/file.h> should be included.
  4436.  
  4437. =item C<hint>
  4438.  
  4439. From F<Oldconfig.U>:
  4440.  
  4441. Gives the type of hints used for previous answers. May be one of
  4442. C<default>, C<recommended> or C<previous>.
  4443.  
  4444. =item C<hostcat>
  4445.  
  4446. From F<nis.U>:
  4447.  
  4448. This variable contains a command that produces the text of the
  4449. F</etc/hosts> file.  This is normally "cat F</etc/hosts>", but can be
  4450. "ypcat hosts" when C<NIS> is used.
  4451. On some systems, such as os390, there may be no equivalent
  4452. command, in which case this variable is unset.
  4453.  
  4454. =item C<html1dir>
  4455.  
  4456. From F<html1dir.U>:
  4457.  
  4458. This variable contains the name of the directory in which html
  4459. source pages are to be put.  This directory is for pages
  4460. that describe whole programs, not libraries or modules.  It
  4461. is intended to correspond roughly to section 1 of the Unix
  4462. manuals.
  4463.  
  4464. =item C<html1direxp>
  4465.  
  4466. From F<html1dir.U>:
  4467.  
  4468. This variable is the same as the html1dir variable, but is filename
  4469. expanded at configuration time, for convenient use in makefiles.
  4470.  
  4471. =item C<html3dir>
  4472.  
  4473. From F<html3dir.U>:
  4474.  
  4475. This variable contains the name of the directory in which html
  4476. source pages are to be put.  This directory is for pages
  4477. that describe libraries or modules.  It is intended to
  4478. correspond roughly to section 3 of the Unix manuals.
  4479.  
  4480. =item C<html3direxp>
  4481.  
  4482. From F<html3dir.U>:
  4483.  
  4484. This variable is the same as the html3dir variable, but is filename
  4485. expanded at configuration time, for convenient use in makefiles.
  4486.  
  4487. =back
  4488.  
  4489. =head2 i
  4490.  
  4491. =over 4
  4492.  
  4493. =item C<i16size>
  4494.  
  4495. From F<perlxv.U>:
  4496.  
  4497. This variable is the size of an I16 in bytes.
  4498.  
  4499. =item C<i16type>
  4500.  
  4501. From F<perlxv.U>:
  4502.  
  4503. This variable contains the C type used for Perl's I16.
  4504.  
  4505. =item C<i32size>
  4506.  
  4507. From F<perlxv.U>:
  4508.  
  4509. This variable is the size of an I32 in bytes.
  4510.  
  4511. =item C<i32type>
  4512.  
  4513. From F<perlxv.U>:
  4514.  
  4515. This variable contains the C type used for Perl's I32.
  4516.  
  4517. =item C<i64size>
  4518.  
  4519. From F<perlxv.U>:
  4520.  
  4521. This variable is the size of an I64 in bytes.
  4522.  
  4523. =item C<i64type>
  4524.  
  4525. From F<perlxv.U>:
  4526.  
  4527. This variable contains the C type used for Perl's I64.
  4528.  
  4529. =item C<i8size>
  4530.  
  4531. From F<perlxv.U>:
  4532.  
  4533. This variable is the size of an I8 in bytes.
  4534.  
  4535. =item C<i8type>
  4536.  
  4537. From F<perlxv.U>:
  4538.  
  4539. This variable contains the C type used for Perl's I8.
  4540.  
  4541. =item C<i_arpainet>
  4542.  
  4543. From F<i_arpainet.U>:
  4544.  
  4545. This variable conditionally defines the C<I_ARPA_INET> symbol,
  4546. and indicates whether a C program should include <arpa/inet.h>.
  4547.  
  4548. =item C<i_bsdioctl>
  4549.  
  4550. From F<i_sysioctl.U>:
  4551.  
  4552. This variable conditionally defines the C<I_SYS_BSDIOCTL> symbol, which
  4553. indicates to the C program that <sys/bsdioctl.h> exists and should
  4554. be included.
  4555.  
  4556. =item C<i_crypt>
  4557.  
  4558. From F<i_crypt.U>:
  4559.  
  4560. This variable conditionally defines the C<I_CRYPT> symbol, and indicates
  4561. whether a C program should include <crypt.h>.
  4562.  
  4563. =item C<i_db>
  4564.  
  4565. From F<i_db.U>:
  4566.  
  4567. This variable conditionally defines the C<I_DB> symbol, and indicates
  4568. whether a C program may include Berkeley's C<DB> include file <db.h>.
  4569.  
  4570. =item C<i_dbm>
  4571.  
  4572. From F<i_dbm.U>:
  4573.  
  4574. This variable conditionally defines the C<I_DBM> symbol, which
  4575. indicates to the C program that <dbm.h> exists and should
  4576. be included.
  4577.  
  4578. =item C<i_dirent>
  4579.  
  4580. From F<i_dirent.U>:
  4581.  
  4582. This variable conditionally defines C<I_DIRENT>, which indicates
  4583. to the C program that it should include <dirent.h>.
  4584.  
  4585. =item C<i_dld>
  4586.  
  4587. From F<i_dld.U>:
  4588.  
  4589. This variable conditionally defines the C<I_DLD> symbol, which
  4590. indicates to the C program that <dld.h> (C<GNU> dynamic loading)
  4591. exists and should be included.
  4592.  
  4593. =item C<i_dlfcn>
  4594.  
  4595. From F<i_dlfcn.U>:
  4596.  
  4597. This variable conditionally defines the C<I_DLFCN> symbol, which
  4598. indicates to the C program that <dlfcn.h> exists and should
  4599. be included.
  4600.  
  4601. =item C<i_fcntl>
  4602.  
  4603. From F<i_fcntl.U>:
  4604.  
  4605. This variable controls the value of C<I_FCNTL> (which tells
  4606. the C program to include <fcntl.h>).
  4607.  
  4608. =item C<i_float>
  4609.  
  4610. From F<i_float.U>:
  4611.  
  4612. This variable conditionally defines the C<I_FLOAT> symbol, and indicates
  4613. whether a C program may include <float.h> to get symbols like C<DBL_MAX>
  4614. or C<DBL_MIN>, F<i.e>. machine dependent floating point values.
  4615.  
  4616. =item C<i_fp>
  4617.  
  4618. From F<i_fp.U>:
  4619.  
  4620. This variable conditionally defines the C<I_FP> symbol, and indicates
  4621. whether a C program should include <fp.h>.
  4622.  
  4623. =item C<i_fp_class>
  4624.  
  4625. From F<i_fp_class.U>:
  4626.  
  4627. This variable conditionally defines the C<I_FP_CLASS> symbol, and indicates
  4628. whether a C program should include <fp_class.h>.
  4629.  
  4630. =item C<i_gdbm>
  4631.  
  4632. From F<i_gdbm.U>:
  4633.  
  4634. This variable conditionally defines the C<I_GDBM> symbol, which
  4635. indicates to the C program that <gdbm.h> exists and should
  4636. be included.
  4637.  
  4638. =item C<i_grp>
  4639.  
  4640. From F<i_grp.U>:
  4641.  
  4642. This variable conditionally defines the C<I_GRP> symbol, and indicates
  4643. whether a C program should include <grp.h>.
  4644.  
  4645. =item C<i_ieeefp>
  4646.  
  4647. From F<i_ieeefp.U>:
  4648.  
  4649. This variable conditionally defines the C<I_IEEEFP> symbol, and indicates
  4650. whether a C program should include <ieeefp.h>.
  4651.  
  4652. =item C<i_inttypes>
  4653.  
  4654. From F<i_inttypes.U>:
  4655.  
  4656. This variable conditionally defines the C<I_INTTYPES> symbol,
  4657. and indicates whether a C program should include <inttypes.h>.
  4658.  
  4659. =item C<i_langinfo>
  4660.  
  4661. From F<i_langinfo.U>:
  4662.  
  4663. This variable conditionally defines the C<I_LANGINFO> symbol,
  4664. and indicates whether a C program should include <langinfo.h>.
  4665.  
  4666. =item C<i_libutil>
  4667.  
  4668. From F<i_libutil.U>:
  4669.  
  4670. This variable conditionally defines the C<I_LIBUTIL> symbol, and indicates
  4671. whether a C program should include <libutil.h>.
  4672.  
  4673. =item C<i_limits>
  4674.  
  4675. From F<i_limits.U>:
  4676.  
  4677. This variable conditionally defines the C<I_LIMITS> symbol, and indicates
  4678. whether a C program may include <limits.h> to get symbols like C<WORD_BIT>
  4679. and friends.
  4680.  
  4681. =item C<i_locale>
  4682.  
  4683. From F<i_locale.U>:
  4684.  
  4685. This variable conditionally defines the C<I_LOCALE> symbol,
  4686. and indicates whether a C program should include <locale.h>.
  4687.  
  4688. =item C<i_machcthr>
  4689.  
  4690. From F<i_machcthr.U>:
  4691.  
  4692. This variable conditionally defines the C<I_MACH_CTHREADS> symbol,
  4693. and indicates whether a C program should include <mach/cthreads.h>.
  4694.  
  4695. =item C<i_malloc>
  4696.  
  4697. From F<i_malloc.U>:
  4698.  
  4699. This variable conditionally defines the C<I_MALLOC> symbol, and indicates
  4700. whether a C program should include <malloc.h>.
  4701.  
  4702. =item C<i_math>
  4703.  
  4704. From F<i_math.U>:
  4705.  
  4706. This variable conditionally defines the C<I_MATH> symbol, and indicates
  4707. whether a C program may include <math.h>.
  4708.  
  4709. =item C<i_memory>
  4710.  
  4711. From F<i_memory.U>:
  4712.  
  4713. This variable conditionally defines the C<I_MEMORY> symbol, and indicates
  4714. whether a C program should include <memory.h>.
  4715.  
  4716. =item C<i_mntent>
  4717.  
  4718. From F<i_mntent.U>:
  4719.  
  4720. This variable conditionally defines the C<I_MNTENT> symbol, and indicates
  4721. whether a C program should include <mntent.h>.
  4722.  
  4723. =item C<i_ndbm>
  4724.  
  4725. From F<i_ndbm.U>:
  4726.  
  4727. This variable conditionally defines the C<I_NDBM> symbol, which
  4728. indicates to the C program that <ndbm.h> exists and should
  4729. be included.
  4730.  
  4731. =item C<i_netdb>
  4732.  
  4733. From F<i_netdb.U>:
  4734.  
  4735. This variable conditionally defines the C<I_NETDB> symbol, and indicates
  4736. whether a C program should include <netdb.h>.
  4737.  
  4738. =item C<i_neterrno>
  4739.  
  4740. From F<i_neterrno.U>:
  4741.  
  4742. This variable conditionally defines the C<I_NET_ERRNO> symbol, which
  4743. indicates to the C program that <net/errno.h> exists and should
  4744. be included.
  4745.  
  4746. =item C<i_netinettcp>
  4747.  
  4748. From F<i_netinettcp.U>:
  4749.  
  4750. This variable conditionally defines the C<I_NETINET_TCP> symbol,
  4751. and indicates whether a C program should include <netinet/tcp.h>.
  4752.  
  4753. =item C<i_niin>
  4754.  
  4755. From F<i_niin.U>:
  4756.  
  4757. This variable conditionally defines C<I_NETINET_IN>, which indicates
  4758. to the C program that it should include <netinet/in.h>. Otherwise,
  4759. you may try <sys/in.h>.
  4760.  
  4761. =item C<i_poll>
  4762.  
  4763. From F<i_poll.U>:
  4764.  
  4765. This variable conditionally defines the C<I_POLL> symbol, and indicates
  4766. whether a C program should include <poll.h>.
  4767.  
  4768. =item C<i_prot>
  4769.  
  4770. From F<i_prot.U>:
  4771.  
  4772. This variable conditionally defines the C<I_PROT> symbol, and indicates
  4773. whether a C program should include <prot.h>.
  4774.  
  4775. =item C<i_pthread>
  4776.  
  4777. From F<i_pthread.U>:
  4778.  
  4779. This variable conditionally defines the C<I_PTHREAD> symbol,
  4780. and indicates whether a C program should include <pthread.h>.
  4781.  
  4782. =item C<i_pwd>
  4783.  
  4784. From F<i_pwd.U>:
  4785.  
  4786. This variable conditionally defines C<I_PWD>, which indicates
  4787. to the C program that it should include <pwd.h>.
  4788.  
  4789. =item C<i_rpcsvcdbm>
  4790.  
  4791. From F<i_dbm.U>:
  4792.  
  4793. This variable conditionally defines the C<I_RPCSVC_DBM> symbol, which
  4794. indicates to the C program that <rpcsvc/dbm.h> exists and should
  4795. be included.  Some System V systems might need this instead of <dbm.h>.
  4796.  
  4797. =item C<i_sfio>
  4798.  
  4799. From F<i_sfio.U>:
  4800.  
  4801. This variable conditionally defines the C<I_SFIO> symbol,
  4802. and indicates whether a C program should include <sfio.h>.
  4803.  
  4804. =item C<i_sgtty>
  4805.  
  4806. From F<i_termio.U>:
  4807.  
  4808. This variable conditionally defines the C<I_SGTTY> symbol, which
  4809. indicates to the C program that it should include <sgtty.h> rather
  4810. than <termio.h>.
  4811.  
  4812. =item C<i_shadow>
  4813.  
  4814. From F<i_shadow.U>:
  4815.  
  4816. This variable conditionally defines the C<I_SHADOW> symbol, and indicates
  4817. whether a C program should include <shadow.h>.
  4818.  
  4819. =item C<i_socks>
  4820.  
  4821. From F<i_socks.U>:
  4822.  
  4823. This variable conditionally defines the C<I_SOCKS> symbol, and indicates
  4824. whether a C program should include <socks.h>.
  4825.  
  4826. =item C<i_stdarg>
  4827.  
  4828. From F<i_varhdr.U>:
  4829.  
  4830. This variable conditionally defines the C<I_STDARG> symbol, which
  4831. indicates to the C program that <stdarg.h> exists and should
  4832. be included.
  4833.  
  4834. =item C<i_stddef>
  4835.  
  4836. From F<i_stddef.U>:
  4837.  
  4838. This variable conditionally defines the C<I_STDDEF> symbol, which
  4839. indicates to the C program that <stddef.h> exists and should
  4840. be included.
  4841.  
  4842. =item C<i_stdlib>
  4843.  
  4844. From F<i_stdlib.U>:
  4845.  
  4846. This variable conditionally defines the C<I_STDLIB> symbol, which
  4847. indicates to the C program that <stdlib.h> exists and should
  4848. be included.
  4849.  
  4850. =item C<i_string>
  4851.  
  4852. From F<i_string.U>:
  4853.  
  4854. This variable conditionally defines the C<I_STRING> symbol, which
  4855. indicates that <string.h> should be included rather than <strings.h>.
  4856.  
  4857. =item C<i_sunmath>
  4858.  
  4859. From F<i_sunmath.U>:
  4860.  
  4861. This variable conditionally defines the C<I_SUNMATH> symbol, and indicates
  4862. whether a C program should include <sunmath.h>.
  4863.  
  4864. =item C<i_sysaccess>
  4865.  
  4866. From F<i_sysaccess.U>:
  4867.  
  4868. This variable conditionally defines the C<I_SYS_ACCESS> symbol,
  4869. and indicates whether a C program should include <sys/access.h>.
  4870.  
  4871. =item C<i_sysdir>
  4872.  
  4873. From F<i_sysdir.U>:
  4874.  
  4875. This variable conditionally defines the C<I_SYS_DIR> symbol, and indicates
  4876. whether a C program should include <sys/dir.h>.
  4877.  
  4878. =item C<i_sysfile>
  4879.  
  4880. From F<i_sysfile.U>:
  4881.  
  4882. This variable conditionally defines the C<I_SYS_FILE> symbol, and indicates
  4883. whether a C program should include <sys/file.h> to get C<R_OK> and friends.
  4884.  
  4885. =item C<i_sysfilio>
  4886.  
  4887. From F<i_sysioctl.U>:
  4888.  
  4889. This variable conditionally defines the C<I_SYS_FILIO> symbol, which
  4890. indicates to the C program that <sys/filio.h> exists and should
  4891. be included in preference to <sys/ioctl.h>.
  4892.  
  4893. =item C<i_sysin>
  4894.  
  4895. From F<i_niin.U>:
  4896.  
  4897. This variable conditionally defines C<I_SYS_IN>, which indicates
  4898. to the C program that it should include <sys/in.h> instead of
  4899. <netinet/in.h>.
  4900.  
  4901. =item C<i_sysioctl>
  4902.  
  4903. From F<i_sysioctl.U>:
  4904.  
  4905. This variable conditionally defines the C<I_SYS_IOCTL> symbol, which
  4906. indicates to the C program that <sys/ioctl.h> exists and should
  4907. be included.
  4908.  
  4909. =item C<i_syslog>
  4910.  
  4911. From F<i_syslog.U>:
  4912.  
  4913. This variable conditionally defines the C<I_SYSLOG> symbol,
  4914. and indicates whether a C program should include <syslog.h>.
  4915.  
  4916. =item C<i_sysmman>
  4917.  
  4918. From F<i_sysmman.U>:
  4919.  
  4920. This variable conditionally defines the C<I_SYS_MMAN> symbol, and
  4921. indicates whether a C program should include <sys/mman.h>.
  4922.  
  4923. =item C<i_sysmode>
  4924.  
  4925. From F<i_sysmode.U>:
  4926.  
  4927. This variable conditionally defines the C<I_SYSMODE> symbol,
  4928. and indicates whether a C program should include <sys/mode.h>.
  4929.  
  4930. =item C<i_sysmount>
  4931.  
  4932. From F<i_sysmount.U>:
  4933.  
  4934. This variable conditionally defines the C<I_SYSMOUNT> symbol,
  4935. and indicates whether a C program should include <sys/mount.h>.
  4936.  
  4937. =item C<i_sysndir>
  4938.  
  4939. From F<i_sysndir.U>:
  4940.  
  4941. This variable conditionally defines the C<I_SYS_NDIR> symbol, and indicates
  4942. whether a C program should include <sys/ndir.h>.
  4943.  
  4944. =item C<i_sysparam>
  4945.  
  4946. From F<i_sysparam.U>:
  4947.  
  4948. This variable conditionally defines the C<I_SYS_PARAM> symbol, and indicates
  4949. whether a C program should include <sys/param.h>.
  4950.  
  4951. =item C<i_sysresrc>
  4952.  
  4953. From F<i_sysresrc.U>:
  4954.  
  4955. This variable conditionally defines the C<I_SYS_RESOURCE> symbol,
  4956. and indicates whether a C program should include <sys/resource.h>.
  4957.  
  4958. =item C<i_syssecrt>
  4959.  
  4960. From F<i_syssecrt.U>:
  4961.  
  4962. This variable conditionally defines the C<I_SYS_SECURITY> symbol,
  4963. and indicates whether a C program should include <sys/security.h>.
  4964.  
  4965. =item C<i_sysselct>
  4966.  
  4967. From F<i_sysselct.U>:
  4968.  
  4969. This variable conditionally defines C<I_SYS_SELECT>, which indicates
  4970. to the C program that it should include <sys/select.h> in order to
  4971. get the definition of struct timeval.
  4972.  
  4973. =item C<i_syssockio>
  4974.  
  4975. From F<i_sysioctl.U>:
  4976.  
  4977. This variable conditionally defines C<I_SYS_SOCKIO> to indicate to the
  4978. C program that socket ioctl codes may be found in <sys/sockio.h>
  4979. instead of <sys/ioctl.h>.
  4980.  
  4981. =item C<i_sysstat>
  4982.  
  4983. From F<i_sysstat.U>:
  4984.  
  4985. This variable conditionally defines the C<I_SYS_STAT> symbol,
  4986. and indicates whether a C program should include <sys/stat.h>.
  4987.  
  4988. =item C<i_sysstatfs>
  4989.  
  4990. From F<i_sysstatfs.U>:
  4991.  
  4992. This variable conditionally defines the C<I_SYSSTATFS> symbol,
  4993. and indicates whether a C program should include <sys/statfs.h>.
  4994.  
  4995. =item C<i_sysstatvfs>
  4996.  
  4997. From F<i_sysstatvfs.U>:
  4998.  
  4999. This variable conditionally defines the C<I_SYSSTATVFS> symbol,
  5000. and indicates whether a C program should include <sys/statvfs.h>.
  5001.  
  5002. =item C<i_systime>
  5003.  
  5004. From F<i_time.U>:
  5005.  
  5006. This variable conditionally defines C<I_SYS_TIME>, which indicates
  5007. to the C program that it should include <sys/time.h>.
  5008.  
  5009. =item C<i_systimek>
  5010.  
  5011. From F<i_time.U>:
  5012.  
  5013. This variable conditionally defines C<I_SYS_TIME_KERNEL>, which
  5014. indicates to the C program that it should include <sys/time.h>
  5015. with C<KERNEL> defined.
  5016.  
  5017. =item C<i_systimes>
  5018.  
  5019. From F<i_systimes.U>:
  5020.  
  5021. This variable conditionally defines the C<I_SYS_TIMES> symbol, and indicates
  5022. whether a C program should include <sys/times.h>.
  5023.  
  5024. =item C<i_systypes>
  5025.  
  5026. From F<i_systypes.U>:
  5027.  
  5028. This variable conditionally defines the C<I_SYS_TYPES> symbol,
  5029. and indicates whether a C program should include <sys/types.h>.
  5030.  
  5031. =item C<i_sysuio>
  5032.  
  5033. From F<i_sysuio.U>:
  5034.  
  5035. This variable conditionally defines the C<I_SYSUIO> symbol, and indicates
  5036. whether a C program should include <sys/uio.h>.
  5037.  
  5038. =item C<i_sysun>
  5039.  
  5040. From F<i_sysun.U>:
  5041.  
  5042. This variable conditionally defines C<I_SYS_UN>, which indicates
  5043. to the C program that it should include <sys/un.h> to get C<UNIX>
  5044. domain socket definitions.
  5045.  
  5046. =item C<i_sysutsname>
  5047.  
  5048. From F<i_sysutsname.U>:
  5049.  
  5050. This variable conditionally defines the C<I_SYSUTSNAME> symbol,
  5051. and indicates whether a C program should include <sys/utsname.h>.
  5052.  
  5053. =item C<i_sysvfs>
  5054.  
  5055. From F<i_sysvfs.U>:
  5056.  
  5057. This variable conditionally defines the C<I_SYSVFS> symbol,
  5058. and indicates whether a C program should include <sys/vfs.h>.
  5059.  
  5060. =item C<i_syswait>
  5061.  
  5062. From F<i_syswait.U>:
  5063.  
  5064. This variable conditionally defines C<I_SYS_WAIT>, which indicates
  5065. to the C program that it should include <sys/wait.h>.
  5066.  
  5067. =item C<i_termio>
  5068.  
  5069. From F<i_termio.U>:
  5070.  
  5071. This variable conditionally defines the C<I_TERMIO> symbol, which
  5072. indicates to the C program that it should include <termio.h> rather
  5073. than <sgtty.h>.
  5074.  
  5075. =item C<i_termios>
  5076.  
  5077. From F<i_termio.U>:
  5078.  
  5079. This variable conditionally defines the C<I_TERMIOS> symbol, which
  5080. indicates to the C program that the C<POSIX> <termios.h> file is
  5081. to be included.
  5082.  
  5083. =item C<i_time>
  5084.  
  5085. From F<i_time.U>:
  5086.  
  5087. This variable conditionally defines C<I_TIME>, which indicates
  5088. to the C program that it should include <time.h>.
  5089.  
  5090. =item C<i_unistd>
  5091.  
  5092. From F<i_unistd.U>:
  5093.  
  5094. This variable conditionally defines the C<I_UNISTD> symbol, and indicates
  5095. whether a C program should include <unistd.h>.
  5096.  
  5097. =item C<i_ustat>
  5098.  
  5099. From F<i_ustat.U>:
  5100.  
  5101. This variable conditionally defines the C<I_USTAT> symbol, and indicates
  5102. whether a C program should include <ustat.h>.
  5103.  
  5104. =item C<i_utime>
  5105.  
  5106. From F<i_utime.U>:
  5107.  
  5108. This variable conditionally defines the C<I_UTIME> symbol, and indicates
  5109. whether a C program should include <utime.h>.
  5110.  
  5111. =item C<i_values>
  5112.  
  5113. From F<i_values.U>:
  5114.  
  5115. This variable conditionally defines the C<I_VALUES> symbol, and indicates
  5116. whether a C program may include <values.h> to get symbols like C<MAXLONG>
  5117. and friends.
  5118.  
  5119. =item C<i_varargs>
  5120.  
  5121. From F<i_varhdr.U>:
  5122.  
  5123. This variable conditionally defines C<I_VARARGS>, which indicates
  5124. to the C program that it should include <varargs.h>.
  5125.  
  5126. =item C<i_varhdr>
  5127.  
  5128. From F<i_varhdr.U>:
  5129.  
  5130. Contains the name of the header to be included to get va_dcl definition.
  5131. Typically one of F<varargs.h> or F<stdarg.h>.
  5132.  
  5133. =item C<i_vfork>
  5134.  
  5135. From F<i_vfork.U>:
  5136.  
  5137. This variable conditionally defines the C<I_VFORK> symbol, and indicates
  5138. whether a C program should include F<vfork.h>.
  5139.  
  5140. =item C<ignore_versioned_solibs>
  5141.  
  5142. From F<libs.U>:
  5143.  
  5144. This variable should be non-empty if non-versioned shared
  5145. libraries (F<libfoo.so.x.y>) are to be ignored (because they
  5146. cannot be linked against).
  5147.  
  5148. =item C<inc_version_list>
  5149.  
  5150. From F<inc_version_list.U>:
  5151.  
  5152. This variable specifies the list of subdirectories in over
  5153. which F<perl.c>:incpush() and F<lib/lib.pm> will automatically
  5154. search when adding directories to @C<INC>.  The elements in
  5155. the list are separated by spaces.  This is only useful
  5156. if you have a perl library directory tree structured like the
  5157. default one.  See C<INSTALL> for how this works.  The versioned
  5158. site_perl directory was introduced in 5.005, so that is the
  5159. lowest possible value.
  5160.  
  5161. =item C<inc_version_list_init>
  5162.  
  5163. From F<inc_version_list.U>:
  5164.  
  5165. This variable holds the same list as inc_version_list, but
  5166. each item is enclosed in double quotes and separated by commas, 
  5167. suitable for use in the C<PERL_INC_VERSION_LIST> initialization.
  5168.  
  5169. =item C<incpath>
  5170.  
  5171. From F<usrinc.U>:
  5172.  
  5173. This variable must preceed the normal include path to get hte
  5174. right one, as in F<$F<incpath/usr/include>> or F<$F<incpath/usr/lib>>.
  5175. Value can be "" or F</bsd43> on mips.
  5176.  
  5177. =item C<inews>
  5178.  
  5179. From F<Loc.U>:
  5180.  
  5181. This variable is defined but not used by Configure.
  5182. The value is a plain '' and is not useful.
  5183.  
  5184. =item C<installarchlib>
  5185.  
  5186. From F<archlib.U>:
  5187.  
  5188. This variable is really the same as archlibexp but may differ on
  5189. those systems using C<AFS>. For extra portability, only this variable
  5190. should be used in makefiles.
  5191.  
  5192. =item C<installbin>
  5193.  
  5194. From F<bin.U>:
  5195.  
  5196. This variable is the same as binexp unless C<AFS> is running in which case
  5197. the user is explicitely prompted for it. This variable should always
  5198. be used in your makefiles for maximum portability.
  5199.  
  5200. =item C<installhtml1dir>
  5201.  
  5202. From F<html1dir.U>:
  5203.  
  5204. This variable is really the same as html1direxp, unless you are 
  5205. using a different installprefix.  For extra portability, you 
  5206. should only use this variable within your makefiles.
  5207.  
  5208. =item C<installhtml3dir>
  5209.  
  5210. From F<html3dir.U>:
  5211.  
  5212. This variable is really the same as html3direxp, unless you are 
  5213. using a different installprefix.  For extra portability, you 
  5214. should only use this variable within your makefiles.
  5215.  
  5216. =item C<installman1dir>
  5217.  
  5218. From F<man1dir.U>:
  5219.  
  5220. This variable is really the same as man1direxp, unless you are using
  5221. C<AFS> in which case it points to the read/write location whereas
  5222. man1direxp only points to the read-only access location. For extra
  5223. portability, you should only use this variable within your makefiles.
  5224.  
  5225. =item C<installman3dir>
  5226.  
  5227. From F<man3dir.U>:
  5228.  
  5229. This variable is really the same as man3direxp, unless you are using
  5230. C<AFS> in which case it points to the read/write location whereas
  5231. man3direxp only points to the read-only access location. For extra
  5232. portability, you should only use this variable within your makefiles.
  5233.  
  5234. =item C<installprefix>
  5235.  
  5236. From F<installprefix.U>:
  5237.  
  5238. This variable holds the name of the directory below which 
  5239. "make install" will install the package.  For most users, this
  5240. is the same as prefix.  However, it is useful for
  5241. installing the software into a different (usually temporary)
  5242. location after which it can be bundled up and moved somehow
  5243. to the final location specified by prefix.
  5244.  
  5245. =item C<installprefixexp>
  5246.  
  5247. From F<installprefix.U>:
  5248.  
  5249. This variable holds the full absolute path of installprefix
  5250. with all F<~>-expansion done.
  5251.  
  5252. =item C<installprivlib>
  5253.  
  5254. From F<privlib.U>:
  5255.  
  5256. This variable is really the same as privlibexp but may differ on
  5257. those systems using C<AFS>. For extra portability, only this variable
  5258. should be used in makefiles.
  5259.  
  5260. =item C<installscript>
  5261.  
  5262. From F<scriptdir.U>:
  5263.  
  5264. This variable is usually the same as scriptdirexp, unless you are on
  5265. a system running C<AFS>, in which case they may differ slightly. You
  5266. should always use this variable within your makefiles for portability.
  5267.  
  5268. =item C<installsitearch>
  5269.  
  5270. From F<sitearch.U>:
  5271.  
  5272. This variable is really the same as sitearchexp but may differ on
  5273. those systems using C<AFS>. For extra portability, only this variable
  5274. should be used in makefiles.
  5275.  
  5276. =item C<installsitebin>
  5277.  
  5278. From F<sitebin.U>:
  5279.  
  5280. This variable is usually the same as sitebinexp, unless you are on
  5281. a system running C<AFS>, in which case they may differ slightly. You
  5282. should always use this variable within your makefiles for portability.
  5283.  
  5284. =item C<installsitehtml1dir>
  5285.  
  5286. From F<sitehtml1dir.U>:
  5287.  
  5288. This variable is really the same as sitehtml1direxp, unless you are using
  5289. C<AFS> in which case it points to the read/write location whereas
  5290. html1direxp only points to the read-only access location. For extra
  5291. portability, you should only use this variable within your makefiles.
  5292.  
  5293. =item C<installsitehtml3dir>
  5294.  
  5295. From F<sitehtml3dir.U>:
  5296.  
  5297. This variable is really the same as sitehtml3direxp, unless you are using
  5298. C<AFS> in which case it points to the read/write location whereas
  5299. html3direxp only points to the read-only access location. For extra
  5300. portability, you should only use this variable within your makefiles.
  5301.  
  5302. =item C<installsitelib>
  5303.  
  5304. From F<sitelib.U>:
  5305.  
  5306. This variable is really the same as sitelibexp but may differ on
  5307. those systems using C<AFS>. For extra portability, only this variable
  5308. should be used in makefiles.
  5309.  
  5310. =item C<installsiteman1dir>
  5311.  
  5312. From F<siteman1dir.U>:
  5313.  
  5314. This variable is really the same as siteman1direxp, unless you are using
  5315. C<AFS> in which case it points to the read/write location whereas
  5316. man1direxp only points to the read-only access location. For extra
  5317. portability, you should only use this variable within your makefiles.
  5318.  
  5319. =item C<installsiteman3dir>
  5320.  
  5321. From F<siteman3dir.U>:
  5322.  
  5323. This variable is really the same as siteman3direxp, unless you are using
  5324. C<AFS> in which case it points to the read/write location whereas
  5325. man3direxp only points to the read-only access location. For extra
  5326. portability, you should only use this variable within your makefiles.
  5327.  
  5328. =item C<installsitescript>
  5329.  
  5330. From F<sitescript.U>:
  5331.  
  5332. This variable is usually the same as sitescriptexp, unless you are on
  5333. a system running C<AFS>, in which case they may differ slightly. You
  5334. should always use this variable within your makefiles for portability.
  5335.  
  5336. =item C<installstyle>
  5337.  
  5338. From F<installstyle.U>:
  5339.  
  5340. This variable describes the C<style> of the perl installation.
  5341. This is intended to be useful for tools that need to
  5342. manipulate entire perl distributions.  Perl itself doesn't use
  5343. this to find its libraries -- the library directories are
  5344. stored directly in F<Config.pm>.  Currently, there are only two
  5345. styles:  C<lib> and F<lib/perl5>.  The default library locations
  5346. (e.g. privlib, sitelib) are either F<$prefix/lib> or
  5347. F<$prefix/lib/perl5>.  The former is useful if $prefix is a
  5348. directory dedicated to perl (e.g. F</opt/perl>), while the latter
  5349. is useful if $prefix is shared by many packages, e.g. if
  5350. $prefix=F</usr/local>.
  5351.  
  5352. Unfortunately, while this C<style> variable is used to set
  5353. defaults for all three directory hierarchies (core, vendor, and
  5354. site), there is no guarantee that the same style is actually
  5355. appropriate for all those directories.  For example, $prefix
  5356. might be F</opt/perl>, but $siteprefix might be F</usr/local>.
  5357. (Perhaps, in retrospect, the C<lib> style should never have been
  5358. supported, but it did seem like a nice idea at the time.)
  5359.  
  5360. The situation is even less clear for tools such as MakeMaker
  5361. that can be used to install additional modules into
  5362. non-standard places.  For example, if a user intends to install
  5363. a module into a private directory (perhaps by setting C<PREFIX> on
  5364. the F<Makefile.PL> command line), then there is no reason to
  5365. assume that the Configure-time $installstyle setting will be
  5366. relevant for that C<PREFIX>.
  5367.  
  5368. This may later be extended to include other information, so
  5369. be careful with pattern-matching on the results.
  5370.  
  5371. For compatibility with F<perl5.005> and earlier, the default
  5372. setting is based on whether or not $prefix contains the string
  5373. C<perl>.
  5374.  
  5375. =item C<installusrbinperl>
  5376.  
  5377. From F<instubperl.U>:
  5378.  
  5379. This variable tells whether Perl should be installed also as
  5380. F</usr/bin/perl> in addition to
  5381. F<$installbin/perl>
  5382.  
  5383. =item C<installvendorarch>
  5384.  
  5385. From F<vendorarch.U>:
  5386.  
  5387. This variable is really the same as vendorarchexp but may differ on
  5388. those systems using C<AFS>. For extra portability, only this variable
  5389. should be used in makefiles.
  5390.  
  5391. =item C<installvendorbin>
  5392.  
  5393. From F<vendorbin.U>:
  5394.  
  5395. This variable is really the same as vendorbinexp but may differ on
  5396. those systems using C<AFS>. For extra portability, only this variable
  5397. should be used in makefiles.
  5398.  
  5399. =item C<installvendorhtml1dir>
  5400.  
  5401. From F<vendorhtml1dir.U>:
  5402.  
  5403. This variable is really the same as vendorhtml1direxp but may differ on
  5404. those systems using C<AFS>. For extra portability, only this variable
  5405. should be used in makefiles.
  5406.  
  5407. =item C<installvendorhtml3dir>
  5408.  
  5409. From F<vendorhtml3dir.U>:
  5410.  
  5411. This variable is really the same as vendorhtml3direxp but may differ on
  5412. those systems using C<AFS>. For extra portability, only this variable
  5413. should be used in makefiles.
  5414.  
  5415. =item C<installvendorlib>
  5416.  
  5417. From F<vendorlib.U>:
  5418.  
  5419. This variable is really the same as vendorlibexp but may differ on
  5420. those systems using C<AFS>. For extra portability, only this variable
  5421. should be used in makefiles.
  5422.  
  5423. =item C<installvendorman1dir>
  5424.  
  5425. From F<vendorman1dir.U>:
  5426.  
  5427. This variable is really the same as vendorman1direxp but may differ on
  5428. those systems using C<AFS>. For extra portability, only this variable
  5429. should be used in makefiles.
  5430.  
  5431. =item C<installvendorman3dir>
  5432.  
  5433. From F<vendorman3dir.U>:
  5434.  
  5435. This variable is really the same as vendorman3direxp but may differ on
  5436. those systems using C<AFS>. For extra portability, only this variable
  5437. should be used in makefiles.
  5438.  
  5439. =item C<installvendorscript>
  5440.  
  5441. From F<vendorscript.U>:
  5442.  
  5443. This variable is really the same as vendorscriptexp but may differ on
  5444. those systems using C<AFS>. For extra portability, only this variable
  5445. should be used in makefiles.
  5446.  
  5447. =item C<intsize>
  5448.  
  5449. From F<intsize.U>:
  5450.  
  5451. This variable contains the value of the C<INTSIZE> symbol, which
  5452. indicates to the C program how many bytes there are in an int.
  5453.  
  5454. =item C<issymlink>
  5455.  
  5456. From F<issymlink.U>:
  5457.  
  5458. This variable holds the test command to test for a symbolic link
  5459. (if they are supported).  Typical values include C<test -h> and
  5460. C<test -L>.
  5461.  
  5462. =item C<ivdformat>
  5463.  
  5464. From F<perlxvf.U>:
  5465.  
  5466. This variable contains the format string used for printing
  5467. a Perl C<IV> as a signed decimal integer. 
  5468.  
  5469. =item C<ivsize>
  5470.  
  5471. From F<perlxv.U>:
  5472.  
  5473. This variable is the size of an C<IV> in bytes.
  5474.  
  5475. =item C<ivtype>
  5476.  
  5477. From F<perlxv.U>:
  5478.  
  5479. This variable contains the C type used for Perl's C<IV>.
  5480.  
  5481. =back
  5482.  
  5483. =head2 k
  5484.  
  5485. =over 4
  5486.  
  5487. =item C<known_extensions>
  5488.  
  5489. From F<Extensions.U>:
  5490.  
  5491. This variable holds a list of all C<XS> extensions included in 
  5492. the package.
  5493.  
  5494. =item C<ksh>
  5495.  
  5496. From F<Loc.U>:
  5497.  
  5498. This variable is defined but not used by Configure.
  5499. The value is a plain '' and is not useful.
  5500.  
  5501. =back
  5502.  
  5503. =head2 l
  5504.  
  5505. =over 4
  5506.  
  5507. =item C<ld>
  5508.  
  5509. From F<dlsrc.U>:
  5510.  
  5511. This variable indicates the program to be used to link
  5512. libraries for dynamic loading.  On some systems, it is C<ld>.
  5513. On C<ELF> systems, it should be $cc.  Mostly, we'll try to respect
  5514. the hint file setting.
  5515.  
  5516. =item C<lddlflags>
  5517.  
  5518. From F<dlsrc.U>:
  5519.  
  5520. This variable contains any special flags that might need to be
  5521. passed to $ld to create a shared library suitable for dynamic
  5522. loading.  It is up to the makefile to use it.  For hpux, it
  5523. should be C<-b>.  For sunos 4.1, it is empty.
  5524.  
  5525. =item C<ldflags>
  5526.  
  5527. From F<ccflags.U>:
  5528.  
  5529. This variable contains any additional C loader flags desired by
  5530. the user.  It is up to the Makefile to use this.
  5531.  
  5532. =item C<ldflags_uselargefiles>
  5533.  
  5534. From F<uselfs.U>:
  5535.  
  5536. This variable contains the loader flags needed by large file builds
  5537. and added to ldflags by hints files.
  5538.  
  5539. =item C<ldlibpthname>
  5540.  
  5541. From F<libperl.U>:
  5542.  
  5543. This variable holds the name of the shared library
  5544. search path, often C<LD_LIBRARY_PATH>.  To get an empty
  5545. string, the hints file must set this to C<none>.
  5546.  
  5547. =item C<less>
  5548.  
  5549. From F<Loc.U>:
  5550.  
  5551. This variable is used internally by Configure to determine the
  5552. full pathname (if any) of the less program.  After Configure runs,
  5553. the value is reset to a plain C<less> and is not useful.
  5554.  
  5555. =item C<lib_ext>
  5556.  
  5557. From F<Unix.U>:
  5558.  
  5559. This is an old synonym for _a.
  5560.  
  5561. =item C<libc>
  5562.  
  5563. From F<libc.U>:
  5564.  
  5565. This variable contains the location of the C library.
  5566.  
  5567. =item C<libperl>
  5568.  
  5569. From F<libperl.U>:
  5570.  
  5571. The perl executable is obtained by linking F<perlmain.c> with
  5572. libperl, any static extensions (usually just DynaLoader),
  5573. and any other libraries needed on this system.  libperl
  5574. is usually F<libperl.a>, but can also be F<libperl.so.xxx> if
  5575. the user wishes to build a perl executable with a shared
  5576. library.
  5577.  
  5578. =item C<libpth>
  5579.  
  5580. From F<libpth.U>:
  5581.  
  5582. This variable holds the general path (space-separated) used to find
  5583. libraries. It is intended to be used by other units.
  5584.  
  5585. =item C<libs>
  5586.  
  5587. From F<libs.U>:
  5588.  
  5589. This variable holds the additional libraries we want to use.
  5590. It is up to the Makefile to deal with it.  The list can be empty.
  5591.  
  5592. =item C<libsdirs>
  5593.  
  5594. From F<libs.U>:
  5595.  
  5596. This variable holds the directory names aka dirnames of the libraries
  5597. we found and accepted, duplicates are removed.
  5598.  
  5599. =item C<libsfiles>
  5600.  
  5601. From F<libs.U>:
  5602.  
  5603. This variable holds the filenames aka basenames of the libraries
  5604. we found and accepted.
  5605.  
  5606. =item C<libsfound>
  5607.  
  5608. From F<libs.U>:
  5609.  
  5610. This variable holds the full pathnames of the libraries
  5611. we found and accepted.
  5612.  
  5613. =item C<libspath>
  5614.  
  5615. From F<libs.U>:
  5616.  
  5617. This variable holds the directory names probed for libraries.
  5618.  
  5619. =item C<libswanted>
  5620.  
  5621. From F<Myinit.U>:
  5622.  
  5623. This variable holds a list of all the libraries we want to
  5624. search.  The order is chosen to pick up the c library
  5625. ahead of ucb or bsd libraries for SVR4.
  5626.  
  5627. =item C<libswanted_uselargefiles>
  5628.  
  5629. From F<uselfs.U>:
  5630.  
  5631. This variable contains the libraries needed by large file builds
  5632. and added to ldflags by hints files.  It is a space separated list
  5633. of the library names without the C<lib> prefix or any suffix, just
  5634. like F<libswanted.>.
  5635.  
  5636. =item C<line>
  5637.  
  5638. From F<Loc.U>:
  5639.  
  5640. This variable is defined but not used by Configure.
  5641. The value is a plain '' and is not useful.
  5642.  
  5643. =item C<lint>
  5644.  
  5645. From F<Loc.U>:
  5646.  
  5647. This variable is defined but not used by Configure.
  5648. The value is a plain '' and is not useful.
  5649.  
  5650. =item C<lkflags>
  5651.  
  5652. From F<ccflags.U>:
  5653.  
  5654. This variable contains any additional C partial linker flags desired by
  5655. the user.  It is up to the Makefile to use this.
  5656.  
  5657. =item C<ln>
  5658.  
  5659. From F<Loc.U>:
  5660.  
  5661. This variable is used internally by Configure to determine the
  5662. full pathname (if any) of the ln program.  After Configure runs,
  5663. the value is reset to a plain C<ln> and is not useful.
  5664.  
  5665. =item C<lns>
  5666.  
  5667. From F<lns.U>:
  5668.  
  5669. This variable holds the name of the command to make 
  5670. symbolic links (if they are supported).  It can be used
  5671. in the Makefile. It is either C<ln -s> or C<ln>
  5672.  
  5673. =item C<localtime_r_proto>
  5674.  
  5675. From F<d_localtime_r.U>:
  5676.  
  5677. This variable encodes the prototype of localtime_r.
  5678. It is zero if d_localtime_r is undef, and one of the
  5679. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_localtime_r
  5680. is defined.
  5681.  
  5682. =item C<locincpth>
  5683.  
  5684. From F<ccflags.U>:
  5685.  
  5686. This variable contains a list of additional directories to be
  5687. searched by the compiler.  The appropriate C<-I> directives will
  5688. be added to ccflags.  This is intended to simplify setting
  5689. local directories from the Configure command line.
  5690. It's not much, but it parallels the loclibpth stuff in F<libpth.U>.
  5691.  
  5692. =item C<loclibpth>
  5693.  
  5694. From F<libpth.U>:
  5695.  
  5696. This variable holds the paths (space-separated) used to find local
  5697. libraries.  It is prepended to libpth, and is intended to be easily
  5698. set from the command line.
  5699.  
  5700. =item C<longdblsize>
  5701.  
  5702. From F<d_longdbl.U>:
  5703.  
  5704. This variable contains the value of the C<LONG_DOUBLESIZE> symbol, which
  5705. indicates to the C program how many bytes there are in a long double,
  5706. if this system supports long doubles.
  5707.  
  5708. =item C<longlongsize>
  5709.  
  5710. From F<d_longlong.U>:
  5711.  
  5712. This variable contains the value of the C<LONGLONGSIZE> symbol, which
  5713. indicates to the C program how many bytes there are in a long long,
  5714. if this system supports long long.
  5715.  
  5716. =item C<longsize>
  5717.  
  5718. From F<intsize.U>:
  5719.  
  5720. This variable contains the value of the C<LONGSIZE> symbol, which
  5721. indicates to the C program how many bytes there are in a long.
  5722.  
  5723. =item C<lp>
  5724.  
  5725. From F<Loc.U>:
  5726.  
  5727. This variable is defined but not used by Configure.
  5728. The value is a plain '' and is not useful.
  5729.  
  5730. =item C<lpr>
  5731.  
  5732. From F<Loc.U>:
  5733.  
  5734. This variable is defined but not used by Configure.
  5735. The value is a plain '' and is not useful.
  5736.  
  5737. =item C<ls>
  5738.  
  5739. From F<Loc.U>:
  5740.  
  5741. This variable is used internally by Configure to determine the
  5742. full pathname (if any) of the ls program.  After Configure runs,
  5743. the value is reset to a plain C<ls> and is not useful.
  5744.  
  5745. =item C<lseeksize>
  5746.  
  5747. From F<lseektype.U>:
  5748.  
  5749. This variable defines lseektype to be something like off_t, long, 
  5750. or whatever type is used to declare lseek offset's type in the
  5751. kernel (which also appears to be lseek's return type).
  5752.  
  5753. =item C<lseektype>
  5754.  
  5755. From F<lseektype.U>:
  5756.  
  5757. This variable defines lseektype to be something like off_t, long, 
  5758. or whatever type is used to declare lseek offset's type in the
  5759. kernel (which also appears to be lseek's return type).
  5760.  
  5761. =back
  5762.  
  5763. =head2 m
  5764.  
  5765. =over 4
  5766.  
  5767. =item C<mail>
  5768.  
  5769. From F<Loc.U>:
  5770.  
  5771. This variable is defined but not used by Configure.
  5772. The value is a plain '' and is not useful.
  5773.  
  5774. =item C<mailx>
  5775.  
  5776. From F<Loc.U>:
  5777.  
  5778. This variable is defined but not used by Configure.
  5779. The value is a plain '' and is not useful.
  5780.  
  5781. =item C<make>
  5782.  
  5783. From F<Loc.U>:
  5784.  
  5785. This variable is used internally by Configure to determine the
  5786. full pathname (if any) of the make program.  After Configure runs,
  5787. the value is reset to a plain C<make> and is not useful.
  5788.  
  5789. =item C<make_set_make>
  5790.  
  5791. From F<make.U>:
  5792.  
  5793. Some versions of C<make> set the variable C<MAKE>.  Others do not.
  5794. This variable contains the string to be included in F<Makefile.SH>
  5795. so that C<MAKE> is set if needed, and not if not needed.
  5796. Possible values are:
  5797.  
  5798. make_set_make=C<#>        # If your make program handles this for you,
  5799.  
  5800. make_set_make=C<MAKE=$make>    # if it doesn't.
  5801.  
  5802. This uses a comment character to distinguish a
  5803. C<set> value (from a previous F<config.sh> or Configure C<-D> option)
  5804. from an uncomputed value.
  5805.  
  5806. =item C<mallocobj>
  5807.  
  5808. From F<mallocsrc.U>:
  5809.  
  5810. This variable contains the name of the F<malloc.o> that this package
  5811. generates, if that F<malloc.o> is preferred over the system malloc.
  5812. Otherwise the value is null.  This variable is intended for generating
  5813. Makefiles.  See mallocsrc.
  5814.  
  5815. =item C<mallocsrc>
  5816.  
  5817. From F<mallocsrc.U>:
  5818.  
  5819. This variable contains the name of the F<malloc.c> that comes with
  5820. the package, if that F<malloc.c> is preferred over the system malloc.
  5821. Otherwise the value is null.  This variable is intended for generating
  5822. Makefiles.
  5823.  
  5824. =item C<malloctype>
  5825.  
  5826. From F<mallocsrc.U>:
  5827.  
  5828. This variable contains the kind of ptr returned by malloc and realloc.
  5829.  
  5830. =item C<man1dir>
  5831.  
  5832. From F<man1dir.U>:
  5833.  
  5834. This variable contains the name of the directory in which manual
  5835. source pages are to be put.  It is the responsibility of the
  5836. F<Makefile.SH> to get the value of this into the proper command.
  5837. You must be prepared to do the F<~name> expansion yourself.
  5838.  
  5839. =item C<man1direxp>
  5840.  
  5841. From F<man1dir.U>:
  5842.  
  5843. This variable is the same as the man1dir variable, but is filename
  5844. expanded at configuration time, for convenient use in makefiles.
  5845.  
  5846. =item C<man1ext>
  5847.  
  5848. From F<man1dir.U>:
  5849.  
  5850. This variable contains the extension that the manual page should
  5851. have: one of C<n>, C<l>, or C<1>.  The Makefile must supply the F<.>.
  5852. See man1dir.
  5853.  
  5854. =item C<man3dir>
  5855.  
  5856. From F<man3dir.U>:
  5857.  
  5858. This variable contains the name of the directory in which manual
  5859. source pages are to be put.  It is the responsibility of the
  5860. F<Makefile.SH> to get the value of this into the proper command.
  5861. You must be prepared to do the F<~name> expansion yourself.
  5862.  
  5863. =item C<man3direxp>
  5864.  
  5865. From F<man3dir.U>:
  5866.  
  5867. This variable is the same as the man3dir variable, but is filename
  5868. expanded at configuration time, for convenient use in makefiles.
  5869.  
  5870. =item C<man3ext>
  5871.  
  5872. From F<man3dir.U>:
  5873.  
  5874. This variable contains the extension that the manual page should
  5875. have: one of C<n>, C<l>, or C<3>.  The Makefile must supply the F<.>.
  5876. See man3dir.
  5877.  
  5878. =back
  5879.  
  5880. =head2 M
  5881.  
  5882. =over 4
  5883.  
  5884. =item C<Mcc>
  5885.  
  5886. From F<Loc.U>:
  5887.  
  5888. This variable is used internally by Configure to determine the
  5889. full pathname (if any) of the Mcc program.  After Configure runs,
  5890. the value is reset to a plain C<Mcc> and is not useful.
  5891.  
  5892. =item C<mips_type>
  5893.  
  5894. From F<usrinc.U>:
  5895.  
  5896. This variable holds the environment type for the mips system.
  5897. Possible values are "BSD 4.3" and "System V".
  5898.  
  5899. =item C<mistrustnm>
  5900.  
  5901. From F<Csym.U>:
  5902.  
  5903. This variable can be used to establish a fallthrough for the cases
  5904. where nm fails to find a symbol.  If usenm is false or usenm is true
  5905. and mistrustnm is false, this variable has no effect.  If usenm is true
  5906. and mistrustnm is C<compile>, a test program will be compiled to try to
  5907. find any symbol that can't be located via nm lookup.  If mistrustnm is
  5908. C<run>, the test program will be run as well as being compiled.
  5909.  
  5910. =item C<mkdir>
  5911.  
  5912. From F<Loc.U>:
  5913.  
  5914. This variable is used internally by Configure to determine the
  5915. full pathname (if any) of the mkdir program.  After Configure runs,
  5916. the value is reset to a plain C<mkdir> and is not useful.
  5917.  
  5918. =item C<mmaptype>
  5919.  
  5920. From F<d_mmap.U>:
  5921.  
  5922. This symbol contains the type of pointer returned by mmap()
  5923. (and simultaneously the type of the first argument).
  5924. It can be C<void *> or C<caddr_t>.
  5925.  
  5926. =item C<modetype>
  5927.  
  5928. From F<modetype.U>:
  5929.  
  5930. This variable defines modetype to be something like mode_t, 
  5931. int, unsigned short, or whatever type is used to declare file 
  5932. modes for system calls.
  5933.  
  5934. =item C<more>
  5935.  
  5936. From F<Loc.U>:
  5937.  
  5938. This variable is used internally by Configure to determine the
  5939. full pathname (if any) of the more program.  After Configure runs,
  5940. the value is reset to a plain C<more> and is not useful.
  5941.  
  5942. =item C<multiarch>
  5943.  
  5944. From F<multiarch.U>:
  5945.  
  5946. This variable conditionally defines the C<MULTIARCH> symbol
  5947. which signifies the presence of multiplatform files.
  5948. This is normally set by hints files.
  5949.  
  5950. =item C<mv>
  5951.  
  5952. From F<Loc.U>:
  5953.  
  5954. This variable is defined but not used by Configure.
  5955. The value is a plain '' and is not useful.
  5956.  
  5957. =item C<myarchname>
  5958.  
  5959. From F<archname.U>:
  5960.  
  5961. This variable holds the architecture name computed by Configure in
  5962. a previous run. It is not intended to be perused by any user and
  5963. should never be set in a hint file.
  5964.  
  5965. =item C<mydomain>
  5966.  
  5967. From F<myhostname.U>:
  5968.  
  5969. This variable contains the eventual value of the C<MYDOMAIN> symbol,
  5970. which is the domain of the host the program is going to run on.
  5971. The domain must be appended to myhostname to form a complete host name.
  5972. The dot comes with mydomain, and need not be supplied by the program.
  5973.  
  5974. =item C<myhostname>
  5975.  
  5976. From F<myhostname.U>:
  5977.  
  5978. This variable contains the eventual value of the C<MYHOSTNAME> symbol,
  5979. which is the name of the host the program is going to run on.
  5980. The domain is not kept with hostname, but must be gotten from mydomain.
  5981. The dot comes with mydomain, and need not be supplied by the program.
  5982.  
  5983. =item C<myuname>
  5984.  
  5985. From F<Oldconfig.U>:
  5986.  
  5987. The output of C<uname -a> if available, otherwise the hostname. On Xenix,
  5988. pseudo variables assignments in the output are stripped, thank you. The
  5989. whole thing is then lower-cased.
  5990.  
  5991. =back
  5992.  
  5993. =head2 n
  5994.  
  5995. =over 4
  5996.  
  5997. =item C<n>
  5998.  
  5999. From F<n.U>:
  6000.  
  6001. This variable contains the C<-n> flag if that is what causes the echo
  6002. command to suppress newline.  Otherwise it is null.  Correct usage is
  6003. $echo $n "prompt for a question: $c".
  6004.  
  6005. =item C<need_va_copy>
  6006.  
  6007. From F<need_va_copy.U>:
  6008.  
  6009. This symbol, if defined, indicates that the system stores
  6010. the variable argument list datatype, va_list, in a format
  6011. that cannot be copied by simple assignment, so that some
  6012. other means must be used when copying is required.
  6013. As such systems vary in their provision (or non-provision)
  6014. of copying mechanisms, F<handy.h> defines a platform-
  6015. C<independent> macro, Perl_va_copy(src, dst), to do the job.
  6016.  
  6017. =item C<netdb_hlen_type>
  6018.  
  6019. From F<netdbtype.U>:
  6020.  
  6021. This variable holds the type used for the 2nd argument to
  6022. gethostbyaddr().  Usually, this is int or size_t or unsigned.
  6023. This is only useful if you have gethostbyaddr(), naturally.
  6024.  
  6025. =item C<netdb_host_type>
  6026.  
  6027. From F<netdbtype.U>:
  6028.  
  6029. This variable holds the type used for the 1st argument to
  6030. gethostbyaddr().  Usually, this is char * or void *,  possibly
  6031. with or without a const prefix.
  6032. This is only useful if you have gethostbyaddr(), naturally.
  6033.  
  6034. =item C<netdb_name_type>
  6035.  
  6036. From F<netdbtype.U>:
  6037.  
  6038. This variable holds the type used for the argument to
  6039. gethostbyname().  Usually, this is char * or const char *.
  6040. This is only useful if you have gethostbyname(), naturally.
  6041.  
  6042. =item C<netdb_net_type>
  6043.  
  6044. From F<netdbtype.U>:
  6045.  
  6046. This variable holds the type used for the 1st argument to
  6047. getnetbyaddr().  Usually, this is int or long.
  6048. This is only useful if you have getnetbyaddr(), naturally.
  6049.  
  6050. =item C<nm>
  6051.  
  6052. From F<Loc.U>:
  6053.  
  6054. This variable is used internally by Configure to determine the
  6055. full pathname (if any) of the nm program.  After Configure runs,
  6056. the value is reset to a plain C<nm> and is not useful.
  6057.  
  6058. =item C<nm_opt>
  6059.  
  6060. From F<usenm.U>:
  6061.  
  6062. This variable holds the options that may be necessary for nm.
  6063.  
  6064. =item C<nm_so_opt>
  6065.  
  6066. From F<usenm.U>:
  6067.  
  6068. This variable holds the options that may be necessary for nm
  6069. to work on a shared library but that can not be used on an
  6070. archive library.  Currently, this is only used by Linux, where
  6071. nm --dynamic is *required* to get symbols from an C<ELF> library which
  6072. has been stripped, but nm --dynamic is *fatal* on an archive library.
  6073. Maybe Linux should just always set usenm=false.
  6074.  
  6075. =item C<nonxs_ext>
  6076.  
  6077. From F<Extensions.U>:
  6078.  
  6079. This variable holds a list of all non-xs extensions included
  6080. in the package.  All of them will be built.
  6081.  
  6082. =item C<nroff>
  6083.  
  6084. From F<Loc.U>:
  6085.  
  6086. This variable is used internally by Configure to determine the
  6087. full pathname (if any) of the nroff program.  After Configure runs,
  6088. the value is reset to a plain C<nroff> and is not useful.
  6089.  
  6090. =item C<nv_preserves_uv_bits>
  6091.  
  6092. From F<perlxv.U>:
  6093.  
  6094. This variable indicates how many of bits type uvtype
  6095. a variable nvtype can preserve.
  6096.  
  6097. =item C<nveformat>
  6098.  
  6099. From F<perlxvf.U>:
  6100.  
  6101. This variable contains the format string used for printing
  6102. a Perl C<NV> using %e-ish floating point format.
  6103.  
  6104. =item C<nvEUformat>
  6105.  
  6106. From F<perlxvf.U>:
  6107.  
  6108. This variable contains the format string used for printing
  6109. a Perl C<NV> using %E-ish floating point format.
  6110.  
  6111. =item C<nvfformat>
  6112.  
  6113. From F<perlxvf.U>:
  6114.  
  6115. This variable confains the format string used for printing
  6116. a Perl C<NV> using %f-ish floating point format.
  6117.  
  6118. =item C<nvFUformat>
  6119.  
  6120. From F<perlxvf.U>:
  6121.  
  6122. This variable confains the format string used for printing
  6123. a Perl C<NV> using %F-ish floating point format.
  6124.  
  6125. =item C<nvgformat>
  6126.  
  6127. From F<perlxvf.U>:
  6128.  
  6129. This variable contains the format string used for printing
  6130. a Perl C<NV> using %g-ish floating point format.
  6131.  
  6132. =item C<nvGUformat>
  6133.  
  6134. From F<perlxvf.U>:
  6135.  
  6136. This variable contains the format string used for printing
  6137. a Perl C<NV> using %G-ish floating point format.
  6138.  
  6139. =item C<nvsize>
  6140.  
  6141. From F<perlxv.U>:
  6142.  
  6143. This variable is the size of an C<NV> in bytes.
  6144.  
  6145. =item C<nvtype>
  6146.  
  6147. From F<perlxv.U>:
  6148.  
  6149. This variable contains the C type used for Perl's C<NV>.
  6150.  
  6151. =back
  6152.  
  6153. =head2 o
  6154.  
  6155. =over 4
  6156.  
  6157. =item C<o_nonblock>
  6158.  
  6159. From F<nblock_io.U>:
  6160.  
  6161. This variable bears the symbol value to be used during open() or fcntl()
  6162. to turn on non-blocking I/O for a file descriptor. If you wish to switch
  6163. between blocking and non-blocking, you may try ioctl(C<FIOSNBIO>) instead,
  6164. but that is only supported by some devices.
  6165.  
  6166. =item C<obj_ext>
  6167.  
  6168. From F<Unix.U>:
  6169.  
  6170. This is an old synonym for _o.
  6171.  
  6172. =item C<old_pthread_create_joinable>
  6173.  
  6174. From F<d_pthrattrj.U>:
  6175.  
  6176. This variable defines the constant to use for creating joinable
  6177. (aka undetached) pthreads.  Unused if F<pthread.h> defines
  6178. C<PTHREAD_CREATE_JOINABLE>.  If used, possible values are
  6179. C<PTHREAD_CREATE_UNDETACHED> and C<__UNDETACHED>.
  6180.  
  6181. =item C<optimize>
  6182.  
  6183. From F<ccflags.U>:
  6184.  
  6185. This variable contains any F<optimizer/debugger> flag that should be used.
  6186. It is up to the Makefile to use it.
  6187.  
  6188. =item C<orderlib>
  6189.  
  6190. From F<orderlib.U>:
  6191.  
  6192. This variable is C<true> if the components of libraries must be ordered
  6193. (with `lorder $* | tsort`) before placing them in an archive.  Set to
  6194. C<false> if ranlib or ar can generate random libraries.
  6195.  
  6196. =item C<osname>
  6197.  
  6198. From F<Oldconfig.U>:
  6199.  
  6200. This variable contains the operating system name (e.g. sunos,
  6201. solaris, hpux, etc.).  It can be useful later on for setting
  6202. defaults.  Any spaces are replaced with underscores.  It is set
  6203. to a null string if we can't figure it out.
  6204.  
  6205. =item C<osvers>
  6206.  
  6207. From F<Oldconfig.U>:
  6208.  
  6209. This variable contains the operating system version (e.g.
  6210. 4.1.3, 5.2, etc.).  It is primarily used for helping select
  6211. an appropriate hints file, but might be useful elsewhere for
  6212. setting defaults.  It is set to '' if we can't figure it out.
  6213. We try to be flexible about how much of the version number
  6214. to keep, e.g. if 4.1.1, 4.1.2, and 4.1.3 are essentially the
  6215. same for this package, hints files might just be F<os_4.0> or
  6216. F<os_4.1>, etc., not keeping separate files for each little release.
  6217.  
  6218. =item C<otherlibdirs>
  6219.  
  6220. From F<otherlibdirs.U>:
  6221.  
  6222. This variable contains a colon-separated set of paths for the perl
  6223. binary to search for additional library files or modules.
  6224. These directories will be tacked to the end of @C<INC>.
  6225. Perl will automatically search below each path for version-
  6226. and architecture-specific directories.  See inc_version_list
  6227. for more details.
  6228. A value of C< > means C<none> and is used to preserve this value
  6229. for the next run through Configure.
  6230.  
  6231. =back
  6232.  
  6233. =head2 p
  6234.  
  6235. =over 4
  6236.  
  6237. =item C<package>
  6238.  
  6239. From F<package.U>:
  6240.  
  6241. This variable contains the name of the package being constructed.
  6242. It is primarily intended for the use of later Configure units.
  6243.  
  6244. =item C<pager>
  6245.  
  6246. From F<pager.U>:
  6247.  
  6248. This variable contains the name of the preferred pager on the system.
  6249. Usual values are (the full pathnames of) more, less, pg, or cat.
  6250.  
  6251. =item C<passcat>
  6252.  
  6253. From F<nis.U>:
  6254.  
  6255. This variable contains a command that produces the text of the
  6256. F</etc/passwd> file.  This is normally "cat F</etc/passwd>", but can be
  6257. "ypcat passwd" when C<NIS> is used.
  6258. On some systems, such as os390, there may be no equivalent
  6259. command, in which case this variable is unset.
  6260.  
  6261. =item C<patchlevel>
  6262.  
  6263. From F<patchlevel.U>:
  6264.  
  6265. The patchlevel level of this package.
  6266. The value of patchlevel comes from the F<patchlevel.h> file.
  6267. In a version number such as 5.6.1, this is the C<6>.
  6268. In F<patchlevel.h>, this is referred to as C<PERL_VERSION>.
  6269.  
  6270. =item C<path_sep>
  6271.  
  6272. From F<Unix.U>:
  6273.  
  6274. This is an old synonym for p_ in F<Head.U>, the character
  6275. used to separate elements in the command shell search C<PATH>.
  6276.  
  6277. =item C<perl5>
  6278.  
  6279. From F<perl5.U>:
  6280.  
  6281. This variable contains the full path (if any) to a previously
  6282. installed F<perl5.005> or later suitable for running the script
  6283. to determine inc_version_list.
  6284.  
  6285. =item C<perl>
  6286.  
  6287. From F<Loc.U>:
  6288.  
  6289. This variable is defined but not used by Configure.
  6290. The value is a plain '' and is not useful.
  6291.  
  6292. =item C<perl_patchlevel>
  6293.  
  6294. From F<patchlevel.U>:
  6295.  
  6296. This is the Perl patch level, a numeric change identifier,
  6297. as defined by whichever source code maintenance system
  6298. is used to maintain the patches; currently Perforce.
  6299. It does not correlate with the Perl version numbers or
  6300. the maintenance versus development dichotomy except
  6301. by also being increasing.
  6302.  
  6303. =back
  6304.  
  6305. =head2 P
  6306.  
  6307. =over 4
  6308.  
  6309. =item C<PERL_REVISION>
  6310.  
  6311. From F<Oldsyms.U>:
  6312.  
  6313. In a Perl version number such as 5.6.2, this is the 5.
  6314. This value is manually set in F<patchlevel.h>
  6315.  
  6316. =item C<PERL_SUBVERSION>
  6317.  
  6318. From F<Oldsyms.U>:
  6319.  
  6320. In a Perl version number such as 5.6.2, this is the 2.
  6321. Values greater than 50 represent potentially unstable
  6322. development subversions.
  6323. This value is manually set in F<patchlevel.h>
  6324.  
  6325. =item C<PERL_VERSION>
  6326.  
  6327. From F<Oldsyms.U>:
  6328.  
  6329. In a Perl version number such as 5.6.2, this is the 6.
  6330. This value is manually set in F<patchlevel.h>
  6331.  
  6332. =item C<perladmin>
  6333.  
  6334. From F<perladmin.U>:
  6335.  
  6336. Electronic mail address of the perl5 administrator.
  6337.  
  6338. =item C<perllibs>
  6339.  
  6340. From F<End.U>:
  6341.  
  6342. The list of libraries needed by Perl only (any libraries needed
  6343. by extensions only will by dropped, if using dynamic loading).
  6344.  
  6345. =item C<perlpath>
  6346.  
  6347. From F<perlpath.U>:
  6348.  
  6349. This variable contains the eventual value of the C<PERLPATH> symbol,
  6350. which contains the name of the perl interpreter to be used in
  6351. shell scripts and in the "eval C<exec>" idiom.  This variable is
  6352. not necessarily the pathname of the file containing the perl
  6353. interpreter; you must append the executable extension (_exe) if
  6354. it is not already present.  Note that Perl code that runs during
  6355. the Perl build process cannot reference this variable, as Perl
  6356. may not have been installed, or even if installed, may be a
  6357. different version of Perl.
  6358.  
  6359. =item C<pg>
  6360.  
  6361. From F<Loc.U>:
  6362.  
  6363. This variable is used internally by Configure to determine the
  6364. full pathname (if any) of the pg program.  After Configure runs,
  6365. the value is reset to a plain C<pg> and is not useful.
  6366.  
  6367. =item C<phostname>
  6368.  
  6369. From F<myhostname.U>:
  6370.  
  6371. This variable contains the eventual value of the C<PHOSTNAME> symbol,
  6372. which is a command that can be fed to popen() to get the host name.
  6373. The program should probably not presume that the domain is or isn't
  6374. there already.
  6375.  
  6376. =item C<pidtype>
  6377.  
  6378. From F<pidtype.U>:
  6379.  
  6380. This variable defines C<PIDTYPE> to be something like pid_t, int, 
  6381. ushort, or whatever type is used to declare process ids in the kernel.
  6382.  
  6383. =item C<plibpth>
  6384.  
  6385. From F<libpth.U>:
  6386.  
  6387. Holds the private path used by Configure to find out the libraries.
  6388. Its value is prepend to libpth. This variable takes care of special
  6389. machines, like the mips.  Usually, it should be empty.
  6390.  
  6391. =item C<pmake>
  6392.  
  6393. From F<Loc.U>:
  6394.  
  6395. This variable is defined but not used by Configure.
  6396. The value is a plain '' and is not useful.
  6397.  
  6398. =item C<pr>
  6399.  
  6400. From F<Loc.U>:
  6401.  
  6402. This variable is defined but not used by Configure.
  6403. The value is a plain '' and is not useful.
  6404.  
  6405. =item C<prefix>
  6406.  
  6407. From F<prefix.U>:
  6408.  
  6409. This variable holds the name of the directory below which the
  6410. user will install the package.  Usually, this is F</usr/local>, and
  6411. executables go in F</usr/local/bin>, library stuff in F</usr/local/lib>,
  6412. man pages in F</usr/local/man>, etc.  It is only used to set defaults
  6413. for things in F<bin.U>, F<mansrc.U>, F<privlib.U>, or F<scriptdir.U>.
  6414.  
  6415. =item C<prefixexp>
  6416.  
  6417. From F<prefix.U>:
  6418.  
  6419. This variable holds the full absolute path of the directory below
  6420. which the user will install the package.  Derived from prefix.
  6421.  
  6422. =item C<privlib>
  6423.  
  6424. From F<privlib.U>:
  6425.  
  6426. This variable contains the eventual value of the C<PRIVLIB> symbol,
  6427. which is the name of the private library for this package.  It may
  6428. have a F<~> on the front. It is up to the makefile to eventually create
  6429. this directory while performing installation (with F<~> substitution).
  6430.  
  6431. =item C<privlibexp>
  6432.  
  6433. From F<privlib.U>:
  6434.  
  6435. This variable is the F<~name> expanded version of privlib, so that you
  6436. may use it directly in Makefiles or shell scripts.
  6437.  
  6438. =item C<procselfexe>
  6439.  
  6440. From F<d_procselfexe.U>:
  6441.  
  6442. If d_procselfexe is defined, $procselfexe is the filename
  6443. of the symbolic link pointing to the absolute pathname of
  6444. the executing program.
  6445.  
  6446. =item C<prototype>
  6447.  
  6448. From F<prototype.U>:
  6449.  
  6450. This variable holds the eventual value of C<CAN_PROTOTYPE>, which
  6451. indicates the C compiler can handle funciton prototypes.
  6452.  
  6453. =item C<ptrsize>
  6454.  
  6455. From F<ptrsize.U>:
  6456.  
  6457. This variable contains the value of the C<PTRSIZE> symbol, which
  6458. indicates to the C program how many bytes there are in a pointer.
  6459.  
  6460. =back
  6461.  
  6462. =head2 q
  6463.  
  6464. =over 4
  6465.  
  6466. =item C<quadkind>
  6467.  
  6468. From F<quadtype.U>:
  6469.  
  6470. This variable, if defined, encodes the type of a quad:
  6471. 1 = int, 2 = long, 3 = long long, 4 = int64_t.
  6472.  
  6473. =item C<quadtype>
  6474.  
  6475. From F<quadtype.U>:
  6476.  
  6477. This variable defines Quad_t to be something like long, int, 
  6478. long long, int64_t, or whatever type is used for 64-bit integers.
  6479.  
  6480. =back
  6481.  
  6482. =head2 r
  6483.  
  6484. =over 4
  6485.  
  6486. =item C<randbits>
  6487.  
  6488. From F<randfunc.U>:
  6489.  
  6490. Indicates how many bits are produced by the function used to
  6491. generate normalized random numbers.
  6492.  
  6493. =item C<randfunc>
  6494.  
  6495. From F<randfunc.U>:
  6496.  
  6497. Indicates the name of the random number function to use.
  6498. Values include drand48, random, and rand. In C programs,
  6499. the C<Drand01> macro is defined to generate uniformly distributed
  6500. random numbers over the range [0., 1.[ (see drand01 and nrand).
  6501.  
  6502. =item C<random_r_proto>
  6503.  
  6504. From F<d_random_r.U>:
  6505.  
  6506. This variable encodes the prototype of random_r.
  6507. It is zero if d_random_r is undef, and one of the
  6508. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_random_r
  6509. is defined.
  6510.  
  6511. =item C<randseedtype>
  6512.  
  6513. From F<randfunc.U>:
  6514.  
  6515. Indicates the type of the argument of the seedfunc.
  6516.  
  6517. =item C<ranlib>
  6518.  
  6519. From F<orderlib.U>:
  6520.  
  6521. This variable is set to the pathname of the ranlib program, if it is
  6522. needed to generate random libraries.  Set to C<:> if ar can generate
  6523. random libraries or if random libraries are not supported
  6524.  
  6525. =item C<rd_nodata>
  6526.  
  6527. From F<nblock_io.U>:
  6528.  
  6529. This variable holds the return code from read() when no data is
  6530. present. It should be -1, but some systems return 0 when C<O_NDELAY> is
  6531. used, which is a shame because you cannot make the difference between
  6532. no data and an F<EOF.>. Sigh!
  6533.  
  6534. =item C<readdir64_r_proto>
  6535.  
  6536. From F<d_readdir64_r.U>:
  6537.  
  6538. This variable encodes the prototype of readdir64_r.
  6539. It is zero if d_readdir64_r is undef, and one of the
  6540. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_readdir64_r
  6541. is defined.
  6542.  
  6543. =item C<readdir_r_proto>
  6544.  
  6545. From F<d_readdir_r.U>:
  6546.  
  6547. This variable encodes the prototype of readdir_r.
  6548. It is zero if d_readdir_r is undef, and one of the
  6549. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_readdir_r
  6550. is defined.
  6551.  
  6552. =item C<revision>
  6553.  
  6554. From F<patchlevel.U>:
  6555.  
  6556. The value of revision comes from the F<patchlevel.h> file.
  6557. In a version number such as 5.6.1, this is the C<5>.
  6558. In F<patchlevel.h>, this is referred to as C<PERL_REVISION>.
  6559.  
  6560. =item C<rm>
  6561.  
  6562. From F<Loc.U>:
  6563.  
  6564. This variable is used internally by Configure to determine the
  6565. full pathname (if any) of the rm program.  After Configure runs,
  6566. the value is reset to a plain C<rm> and is not useful.
  6567.  
  6568. =item C<rmail>
  6569.  
  6570. From F<Loc.U>:
  6571.  
  6572. This variable is defined but not used by Configure.
  6573. The value is a plain '' and is not useful.
  6574.  
  6575. =item C<run>
  6576.  
  6577. From F<Cross.U>:
  6578.  
  6579. This variable contains the command used by Configure
  6580. to copy and execute a cross-compiled executable in the
  6581. target host.  Useful and available only during Perl build.
  6582. Empty string '' if not cross-compiling.
  6583.  
  6584. =item C<runnm>
  6585.  
  6586. From F<usenm.U>:
  6587.  
  6588. This variable contains C<true> or C<false> depending whether the
  6589. nm extraction should be performed or not, according to the value
  6590. of usenm and the flags on the Configure command line.
  6591.  
  6592. =back
  6593.  
  6594. =head2 s
  6595.  
  6596. =over 4
  6597.  
  6598. =item C<sched_yield>
  6599.  
  6600. From F<d_pthread_y.U>:
  6601.  
  6602. This variable defines the way to yield the execution
  6603. of the current thread.
  6604.  
  6605. =item C<scriptdir>
  6606.  
  6607. From F<scriptdir.U>:
  6608.  
  6609. This variable holds the name of the directory in which the user wants
  6610. to put publicly scripts for the package in question.  It is either
  6611. the same directory as for binaries, or a special one that can be
  6612. mounted across different architectures, like F</usr/share>. Programs
  6613. must be prepared to deal with F<~name> expansion.
  6614.  
  6615. =item C<scriptdirexp>
  6616.  
  6617. From F<scriptdir.U>:
  6618.  
  6619. This variable is the same as scriptdir, but is filename expanded
  6620. at configuration time, for programs not wanting to bother with it.
  6621.  
  6622. =item C<sed>
  6623.  
  6624. From F<Loc.U>:
  6625.  
  6626. This variable is used internally by Configure to determine the
  6627. full pathname (if any) of the sed program.  After Configure runs,
  6628. the value is reset to a plain C<sed> and is not useful.
  6629.  
  6630. =item C<seedfunc>
  6631.  
  6632. From F<randfunc.U>:
  6633.  
  6634. Indicates the random number generating seed function.
  6635. Values include srand48, srandom, and srand.
  6636.  
  6637. =item C<selectminbits>
  6638.  
  6639. From F<selectminbits.U>:
  6640.  
  6641. This variable holds the minimum number of bits operated by select.
  6642. That is, if you do select(n, ...), how many bits at least will be
  6643. cleared in the masks if some activity is detected.  Usually this
  6644. is either n or 32*ceil(F<n/32>), especially many little-endians do
  6645. the latter.  This is only useful if you have select(), naturally.
  6646.  
  6647. =item C<selecttype>
  6648.  
  6649. From F<selecttype.U>:
  6650.  
  6651. This variable holds the type used for the 2nd, 3rd, and 4th
  6652. arguments to select.  Usually, this is C<fd_set *>, if C<HAS_FD_SET>
  6653. is defined, and C<int *> otherwise.  This is only useful if you 
  6654. have select(), naturally.
  6655.  
  6656. =item C<sendmail>
  6657.  
  6658. From F<Loc.U>:
  6659.  
  6660. This variable is defined but not used by Configure.
  6661. The value is a plain '' and is not useful.
  6662.  
  6663. =item C<setgrent_r_proto>
  6664.  
  6665. From F<d_setgrent_r.U>:
  6666.  
  6667. This variable encodes the prototype of setgrent_r.
  6668. It is zero if d_setgrent_r is undef, and one of the
  6669. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setgrent_r
  6670. is defined.
  6671.  
  6672. =item C<sethostent_r_proto>
  6673.  
  6674. From F<d_sethostent_r.U>:
  6675.  
  6676. This variable encodes the prototype of sethostent_r.
  6677. It is zero if d_sethostent_r is undef, and one of the
  6678. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_sethostent_r
  6679. is defined.
  6680.  
  6681. =item C<setlocale_r_proto>
  6682.  
  6683. From F<d_setlocale_r.U>:
  6684.  
  6685. This variable encodes the prototype of setlocale_r.
  6686. It is zero if d_setlocale_r is undef, and one of the
  6687. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setlocale_r
  6688. is defined.
  6689.  
  6690. =item C<setnetent_r_proto>
  6691.  
  6692. From F<d_setnetent_r.U>:
  6693.  
  6694. This variable encodes the prototype of setnetent_r.
  6695. It is zero if d_setnetent_r is undef, and one of the
  6696. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setnetent_r
  6697. is defined.
  6698.  
  6699. =item C<setprotoent_r_proto>
  6700.  
  6701. From F<d_setprotoent_r.U>:
  6702.  
  6703. This variable encodes the prototype of setprotoent_r.
  6704. It is zero if d_setprotoent_r is undef, and one of the
  6705. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setprotoent_r
  6706. is defined.
  6707.  
  6708. =item C<setpwent_r_proto>
  6709.  
  6710. From F<d_setpwent_r.U>:
  6711.  
  6712. This variable encodes the prototype of setpwent_r.
  6713. It is zero if d_setpwent_r is undef, and one of the
  6714. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setpwent_r
  6715. is defined.
  6716.  
  6717. =item C<setservent_r_proto>
  6718.  
  6719. From F<d_setservent_r.U>:
  6720.  
  6721. This variable encodes the prototype of setservent_r.
  6722. It is zero if d_setservent_r is undef, and one of the
  6723. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_setservent_r
  6724. is defined.
  6725.  
  6726. =item C<sh>
  6727.  
  6728. From F<sh.U>:
  6729.  
  6730. This variable contains the full pathname of the shell used
  6731. on this system to execute Bourne shell scripts.  Usually, this will be
  6732. F</bin/sh>, though it's possible that some systems will have F</bin/ksh>,
  6733. F</bin/pdksh>, F</bin/ash>, F</bin/bash>, or even something such as
  6734. D:F</bin/sh.exe>.
  6735. This unit comes before F<Options.U>, so you can't set sh with a C<-D>
  6736. option, though you can override this (and startsh)
  6737. with C<-O -Dsh=F</bin/whatever> -Dstartsh=whatever>
  6738.  
  6739. =item C<shar>
  6740.  
  6741. From F<Loc.U>:
  6742.  
  6743. This variable is defined but not used by Configure.
  6744. The value is a plain '' and is not useful.
  6745.  
  6746. =item C<sharpbang>
  6747.  
  6748. From F<spitshell.U>:
  6749.  
  6750. This variable contains the string #! if this system supports that
  6751. construct.
  6752.  
  6753. =item C<shmattype>
  6754.  
  6755. From F<d_shmat.U>:
  6756.  
  6757. This symbol contains the type of pointer returned by shmat().
  6758. It can be C<void *> or C<char *>.
  6759.  
  6760. =item C<shortsize>
  6761.  
  6762. From F<intsize.U>:
  6763.  
  6764. This variable contains the value of the C<SHORTSIZE> symbol which
  6765. indicates to the C program how many bytes there are in a short.
  6766.  
  6767. =item C<shrpenv>
  6768.  
  6769. From F<libperl.U>:
  6770.  
  6771. If the user builds a shared F<libperl.so>, then we need to tell the
  6772. C<perl> executable where it will be able to find the installed F<libperl.so>. 
  6773. One way to do this on some systems is to set the environment variable
  6774. C<LD_RUN_PATH> to the directory that will be the final location of the
  6775. shared F<libperl.so>.  The makefile can use this with something like
  6776. $shrpenv $(C<CC>) -o perl F<perlmain.o> $libperl $libs
  6777. Typical values are
  6778. shrpenv="env C<LD_RUN_PATH>=F<$archlibexp/C<CORE>>"
  6779. or
  6780. shrpenv=''
  6781. See the main perl F<Makefile.SH> for actual working usage.
  6782. Alternatively, we might be able to use a command line option such
  6783. as -R F<$archlibexp/C<CORE>> (Solaris) or -Wl,-rpath
  6784. F<$archlibexp/C<CORE>> (Linux).
  6785.  
  6786. =item C<shsharp>
  6787.  
  6788. From F<spitshell.U>:
  6789.  
  6790. This variable tells further Configure units whether your sh can
  6791. handle # comments.
  6792.  
  6793. =item C<sig_count>
  6794.  
  6795. From F<sig_name.U>:
  6796.  
  6797. This variable holds a number larger than the largest valid
  6798. signal number.  This is usually the same as the C<NSIG> macro.
  6799.  
  6800. =item C<sig_name>
  6801.  
  6802. From F<sig_name.U>:
  6803.  
  6804. This variable holds the signal names, space separated. The leading
  6805. C<SIG> in signal name is removed.  A C<ZERO> is prepended to the list.
  6806. This is currently not used, sig_name_init is used instead.
  6807.  
  6808. =item C<sig_name_init>
  6809.  
  6810. From F<sig_name.U>:
  6811.  
  6812. This variable holds the signal names, enclosed in double quotes and
  6813. separated by commas, suitable for use in the C<SIG_NAME> definition 
  6814. below.  A C<ZERO> is prepended to the list, and the list is 
  6815. terminated with a plain 0.  The leading C<SIG> in signal names
  6816. is removed. See sig_num.
  6817.  
  6818. =item C<sig_num>
  6819.  
  6820. From F<sig_name.U>:
  6821.  
  6822. This variable holds the signal numbers, space separated. A C<ZERO> is
  6823. prepended to the list (corresponding to the fake C<SIGZERO>).
  6824. Those numbers correspond to  the value of the signal listed
  6825. in the same place within the sig_name list.
  6826. This is currently not used, sig_num_init is used instead.
  6827.  
  6828. =item C<sig_num_init>
  6829.  
  6830. From F<sig_name.U>:
  6831.  
  6832. This variable holds the signal numbers, enclosed in double quotes and
  6833. separated by commas, suitable for use in the C<SIG_NUM> definition 
  6834. below.  A C<ZERO> is prepended to the list, and the list is 
  6835. terminated with a plain 0.
  6836.  
  6837. =item C<sig_size>
  6838.  
  6839. From F<sig_name.U>:
  6840.  
  6841. This variable contains the number of elements of the sig_name
  6842. and sig_num arrays.
  6843.  
  6844. =item C<signal_t>
  6845.  
  6846. From F<d_voidsig.U>:
  6847.  
  6848. This variable holds the type of the signal handler (void or int).
  6849.  
  6850. =item C<sitearch>
  6851.  
  6852. From F<sitearch.U>:
  6853.  
  6854. This variable contains the eventual value of the C<SITEARCH> symbol,
  6855. which is the name of the private library for this package.  It may
  6856. have a F<~> on the front. It is up to the makefile to eventually create
  6857. this directory while performing installation (with F<~> substitution).
  6858. The standard distribution will put nothing in this directory.
  6859. After perl has been installed, users may install their own local
  6860. architecture-dependent modules in this directory with
  6861. MakeMaker F<Makefile.PL>
  6862. or equivalent.  See C<INSTALL> for details.
  6863.  
  6864. =item C<sitearchexp>
  6865.  
  6866. From F<sitearch.U>:
  6867.  
  6868. This variable is the F<~name> expanded version of sitearch, so that you
  6869. may use it directly in Makefiles or shell scripts.
  6870.  
  6871. =item C<sitebin>
  6872.  
  6873. From F<sitebin.U>:
  6874.  
  6875. This variable holds the name of the directory in which the user wants
  6876. to put add-on publicly executable files for the package in question.  It
  6877. is most often a local directory such as F</usr/local/bin>. Programs using
  6878. this variable must be prepared to deal with F<~name> substitution.
  6879. The standard distribution will put nothing in this directory.
  6880. After perl has been installed, users may install their own local
  6881. executables in this directory with
  6882. MakeMaker F<Makefile.PL>
  6883. or equivalent.  See C<INSTALL> for details.
  6884.  
  6885. =item C<sitebinexp>
  6886.  
  6887. From F<sitebin.U>:
  6888.  
  6889. This is the same as the sitebin variable, but is filename expanded at
  6890. configuration time, for use in your makefiles.
  6891.  
  6892. =item C<sitehtml1dir>
  6893.  
  6894. From F<sitehtml1dir.U>:
  6895.  
  6896. This variable contains the name of the directory in which site-specific
  6897. html source pages are to be put.  It is the responsibility of the
  6898. F<Makefile.SH> to get the value of this into the proper command.
  6899. You must be prepared to do the F<~name> expansion yourself.
  6900. The standard distribution will put nothing in this directory.
  6901. After perl has been installed, users may install their own local
  6902. html pages in this directory with
  6903. MakeMaker F<Makefile.PL>
  6904. or equivalent.  See C<INSTALL> for details.
  6905.  
  6906. =item C<sitehtml1direxp>
  6907.  
  6908. From F<sitehtml1dir.U>:
  6909.  
  6910. This variable is the same as the sitehtml1dir variable, but is filename
  6911. expanded at configuration time, for convenient use in makefiles.
  6912.  
  6913. =item C<sitehtml3dir>
  6914.  
  6915. From F<sitehtml3dir.U>:
  6916.  
  6917. This variable contains the name of the directory in which site-specific
  6918. library html source pages are to be put.  It is the responsibility of the
  6919. F<Makefile.SH> to get the value of this into the proper command.
  6920. You must be prepared to do the F<~name> expansion yourself.
  6921. The standard distribution will put nothing in this directory.
  6922. After perl has been installed, users may install their own local
  6923. library html pages in this directory with
  6924. MakeMaker F<Makefile.PL>
  6925. or equivalent.  See C<INSTALL> for details.
  6926.  
  6927. =item C<sitehtml3direxp>
  6928.  
  6929. From F<sitehtml3dir.U>:
  6930.  
  6931. This variable is the same as the sitehtml3dir variable, but is filename
  6932. expanded at configuration time, for convenient use in makefiles.
  6933.  
  6934. =item C<sitelib>
  6935.  
  6936. From F<sitelib.U>:
  6937.  
  6938. This variable contains the eventual value of the C<SITELIB> symbol,
  6939. which is the name of the private library for this package.  It may
  6940. have a F<~> on the front. It is up to the makefile to eventually create
  6941. this directory while performing installation (with F<~> substitution).
  6942. The standard distribution will put nothing in this directory.
  6943. After perl has been installed, users may install their own local
  6944. architecture-independent modules in this directory with
  6945. MakeMaker F<Makefile.PL>
  6946. or equivalent.  See C<INSTALL> for details.
  6947.  
  6948. =item C<sitelib_stem>
  6949.  
  6950. From F<sitelib.U>:
  6951.  
  6952. This variable is $sitelibexp with any trailing version-specific component
  6953. removed.  The elements in inc_version_list (F<inc_version_list.U>) can
  6954. be tacked onto this variable to generate a list of directories to search.
  6955.  
  6956. =item C<sitelibexp>
  6957.  
  6958. From F<sitelib.U>:
  6959.  
  6960. This variable is the F<~name> expanded version of sitelib, so that you
  6961. may use it directly in Makefiles or shell scripts.
  6962.  
  6963. =item C<siteman1dir>
  6964.  
  6965. From F<siteman1dir.U>:
  6966.  
  6967. This variable contains the name of the directory in which site-specific
  6968. manual source pages are to be put.  It is the responsibility of the
  6969. F<Makefile.SH> to get the value of this into the proper command.
  6970. You must be prepared to do the F<~name> expansion yourself.
  6971. The standard distribution will put nothing in this directory.
  6972. After perl has been installed, users may install their own local
  6973. man1 pages in this directory with
  6974. MakeMaker F<Makefile.PL>
  6975. or equivalent.  See C<INSTALL> for details.
  6976.  
  6977. =item C<siteman1direxp>
  6978.  
  6979. From F<siteman1dir.U>:
  6980.  
  6981. This variable is the same as the siteman1dir variable, but is filename
  6982. expanded at configuration time, for convenient use in makefiles.
  6983.  
  6984. =item C<siteman3dir>
  6985.  
  6986. From F<siteman3dir.U>:
  6987.  
  6988. This variable contains the name of the directory in which site-specific
  6989. library man source pages are to be put.  It is the responsibility of the
  6990. F<Makefile.SH> to get the value of this into the proper command.
  6991. You must be prepared to do the F<~name> expansion yourself.
  6992. The standard distribution will put nothing in this directory.
  6993. After perl has been installed, users may install their own local
  6994. man3 pages in this directory with
  6995. MakeMaker F<Makefile.PL>
  6996. or equivalent.  See C<INSTALL> for details.
  6997.  
  6998. =item C<siteman3direxp>
  6999.  
  7000. From F<siteman3dir.U>:
  7001.  
  7002. This variable is the same as the siteman3dir variable, but is filename
  7003. expanded at configuration time, for convenient use in makefiles.
  7004.  
  7005. =item C<siteprefix>
  7006.  
  7007. From F<siteprefix.U>:
  7008.  
  7009. This variable holds the full absolute path of the directory below
  7010. which the user will install add-on packages.
  7011. See C<INSTALL> for usage and examples.
  7012.  
  7013. =item C<siteprefixexp>
  7014.  
  7015. From F<siteprefix.U>:
  7016.  
  7017. This variable holds the full absolute path of the directory below
  7018. which the user will install add-on packages.  Derived from siteprefix.
  7019.  
  7020. =item C<sitescript>
  7021.  
  7022. From F<sitescript.U>:
  7023.  
  7024. This variable holds the name of the directory in which the user wants
  7025. to put add-on publicly executable files for the package in question.  It
  7026. is most often a local directory such as F</usr/local/bin>. Programs using
  7027. this variable must be prepared to deal with F<~name> substitution.
  7028. The standard distribution will put nothing in this directory.
  7029. After perl has been installed, users may install their own local
  7030. scripts in this directory with
  7031. MakeMaker F<Makefile.PL>
  7032. or equivalent.  See C<INSTALL> for details.
  7033.  
  7034. =item C<sitescriptexp>
  7035.  
  7036. From F<sitescript.U>:
  7037.  
  7038. This is the same as the sitescript variable, but is filename expanded at
  7039. configuration time, for use in your makefiles.
  7040.  
  7041. =item C<sizesize>
  7042.  
  7043. From F<sizesize.U>:
  7044.  
  7045. This variable contains the size of a sizetype in bytes.
  7046.  
  7047. =item C<sizetype>
  7048.  
  7049. From F<sizetype.U>:
  7050.  
  7051. This variable defines sizetype to be something like size_t, 
  7052. unsigned long, or whatever type is used to declare length 
  7053. parameters for string functions.
  7054.  
  7055. =item C<sleep>
  7056.  
  7057. From F<Loc.U>:
  7058.  
  7059. This variable is defined but not used by Configure.
  7060. The value is a plain '' and is not useful.
  7061.  
  7062. =item C<smail>
  7063.  
  7064. From F<Loc.U>:
  7065.  
  7066. This variable is defined but not used by Configure.
  7067. The value is a plain '' and is not useful.
  7068.  
  7069. =item C<so>
  7070.  
  7071. From F<so.U>:
  7072.  
  7073. This variable holds the extension used to identify shared libraries
  7074. (also known as shared objects) on the system. Usually set to C<so>.
  7075.  
  7076. =item C<sockethdr>
  7077.  
  7078. From F<d_socket.U>:
  7079.  
  7080. This variable has any cpp C<-I> flags needed for socket support.
  7081.  
  7082. =item C<socketlib>
  7083.  
  7084. From F<d_socket.U>:
  7085.  
  7086. This variable has the names of any libraries needed for socket support.
  7087.  
  7088. =item C<socksizetype>
  7089.  
  7090. From F<socksizetype.U>:
  7091.  
  7092. This variable holds the type used for the size argument
  7093. for various socket calls like accept.  Usual values include
  7094. socklen_t, size_t, and int.
  7095.  
  7096. =item C<sort>
  7097.  
  7098. From F<Loc.U>:
  7099.  
  7100. This variable is used internally by Configure to determine the
  7101. full pathname (if any) of the sort program.  After Configure runs,
  7102. the value is reset to a plain C<sort> and is not useful.
  7103.  
  7104. =item C<spackage>
  7105.  
  7106. From F<package.U>:
  7107.  
  7108. This variable contains the name of the package being constructed,
  7109. with the first letter uppercased, F<i.e>. suitable for starting
  7110. sentences.
  7111.  
  7112. =item C<spitshell>
  7113.  
  7114. From F<spitshell.U>:
  7115.  
  7116. This variable contains the command necessary to spit out a runnable
  7117. shell on this system.  It is either cat or a grep C<-v> for # comments.
  7118.  
  7119. =item C<sPRId64>
  7120.  
  7121. From F<quadfio.U>:
  7122.  
  7123. This variable, if defined, contains the string used by stdio to
  7124. format 64-bit decimal numbers (format C<d>) for output.
  7125.  
  7126. =item C<sPRIeldbl>
  7127.  
  7128. From F<longdblfio.U>:
  7129.  
  7130. This variable, if defined, contains the string used by stdio to
  7131. format long doubles (format C<e>) for output.
  7132.  
  7133. =item C<sPRIEUldbl>
  7134.  
  7135. From F<longdblfio.U>:
  7136.  
  7137. This variable, if defined, contains the string used by stdio to
  7138. format long doubles (format C<E>) for output.
  7139. The C<U> in the name is to separate this from sPRIeldbl so that even
  7140. case-blind systems can see the difference.
  7141.  
  7142. =item C<sPRIfldbl>
  7143.  
  7144. From F<longdblfio.U>:
  7145.  
  7146. This variable, if defined, contains the string used by stdio to
  7147. format long doubles (format C<f>) for output.
  7148.  
  7149. =item C<sPRIFUldbl>
  7150.  
  7151. From F<longdblfio.U>:
  7152.  
  7153. This variable, if defined, contains the string used by stdio to
  7154. format long doubles (format C<F>) for output.
  7155. The C<U> in the name is to separate this from sPRIfldbl so that even
  7156. case-blind systems can see the difference.
  7157.  
  7158. =item C<sPRIgldbl>
  7159.  
  7160. From F<longdblfio.U>:
  7161.  
  7162. This variable, if defined, contains the string used by stdio to
  7163. format long doubles (format C<g>) for output.
  7164.  
  7165. =item C<sPRIGUldbl>
  7166.  
  7167. From F<longdblfio.U>:
  7168.  
  7169. This variable, if defined, contains the string used by stdio to
  7170. format long doubles (format C<G>) for output.
  7171. The C<U> in the name is to separate this from sPRIgldbl so that even
  7172. case-blind systems can see the difference.
  7173.  
  7174. =item C<sPRIi64>
  7175.  
  7176. From F<quadfio.U>:
  7177.  
  7178. This variable, if defined, contains the string used by stdio to
  7179. format 64-bit decimal numbers (format C<i>) for output.
  7180.  
  7181. =item C<sPRIo64>
  7182.  
  7183. From F<quadfio.U>:
  7184.  
  7185. This variable, if defined, contains the string used by stdio to
  7186. format 64-bit octal numbers (format C<o>) for output.
  7187.  
  7188. =item C<sPRIu64>
  7189.  
  7190. From F<quadfio.U>:
  7191.  
  7192. This variable, if defined, contains the string used by stdio to
  7193. format 64-bit unsigned decimal numbers (format C<u>) for output.
  7194.  
  7195. =item C<sPRIx64>
  7196.  
  7197. From F<quadfio.U>:
  7198.  
  7199. This variable, if defined, contains the string used by stdio to
  7200. format 64-bit hexadecimal numbers (format C<x>) for output.
  7201.  
  7202. =item C<sPRIXU64>
  7203.  
  7204. From F<quadfio.U>:
  7205.  
  7206. This variable, if defined, contains the string used by stdio to
  7207. format 64-bit hExADECimAl numbers (format C<X>) for output.
  7208. The C<U> in the name is to separate this from sPRIx64 so that even
  7209. case-blind systems can see the difference.
  7210.  
  7211. =item C<srand48_r_proto>
  7212.  
  7213. From F<d_srand48_r.U>:
  7214.  
  7215. This variable encodes the prototype of srand48_r.
  7216. It is zero if d_srand48_r is undef, and one of the
  7217. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_srand48_r
  7218. is defined.
  7219.  
  7220. =item C<srandom_r_proto>
  7221.  
  7222. From F<d_srandom_r.U>:
  7223.  
  7224. This variable encodes the prototype of srandom_r.
  7225. It is zero if d_srandom_r is undef, and one of the
  7226. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_srandom_r
  7227. is defined.
  7228.  
  7229. =item C<src>
  7230.  
  7231. From F<src.U>:
  7232.  
  7233. This variable holds the path to the package source. It is up to
  7234. the Makefile to use this variable and set C<VPATH> accordingly to
  7235. find the sources remotely.
  7236.  
  7237. =item C<sSCNfldbl>
  7238.  
  7239. From F<longdblfio.U>:
  7240.  
  7241. This variable, if defined, contains the string used by stdio to
  7242. format long doubles (format C<f>) for input.
  7243.  
  7244. =item C<ssizetype>
  7245.  
  7246. From F<ssizetype.U>:
  7247.  
  7248. This variable defines ssizetype to be something like ssize_t, 
  7249. long or int.  It is used by functions that return a count 
  7250. of bytes or an error condition.  It must be a signed type.
  7251. We will pick a type such that sizeof(SSize_t) == sizeof(Size_t).
  7252.  
  7253. =item C<startperl>
  7254.  
  7255. From F<startperl.U>:
  7256.  
  7257. This variable contains the string to put on the front of a perl
  7258. script to make sure (hopefully) that it runs with perl and not some
  7259. shell. Of course, that leading line must be followed by the classical
  7260. perl idiom:
  7261. eval 'exec perl -S $0 ${1+C<$@>}'
  7262. if $running_under_some_shell;
  7263. to guarantee perl startup should the shell execute the script. Note
  7264. that this magic incatation is not understood by csh.
  7265.  
  7266. =item C<startsh>
  7267.  
  7268. From F<startsh.U>:
  7269.  
  7270. This variable contains the string to put on the front of a shell
  7271. script to make sure (hopefully) that it runs with sh and not some
  7272. other shell.
  7273.  
  7274. =item C<static_ext>
  7275.  
  7276. From F<Extensions.U>:
  7277.  
  7278. This variable holds a list of C<XS> extension files we want to
  7279. link statically into the package.  It is used by Makefile.
  7280.  
  7281. =item C<stdchar>
  7282.  
  7283. From F<stdchar.U>:
  7284.  
  7285. This variable conditionally defines C<STDCHAR> to be the type of char
  7286. used in F<stdio.h>.  It has the values "unsigned char" or C<char>.
  7287.  
  7288. =item C<stdio_base>
  7289.  
  7290. From F<d_stdstdio.U>:
  7291.  
  7292. This variable defines how, given a C<FILE> pointer, fp, to access the
  7293. _base field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7294. be used to define the macro FILE_base(fp).
  7295.  
  7296. =item C<stdio_bufsiz>
  7297.  
  7298. From F<d_stdstdio.U>:
  7299.  
  7300. This variable defines how, given a C<FILE> pointer, fp, to determine
  7301. the number of bytes store in the I/O buffer pointer to by the
  7302. _base field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7303. be used to define the macro FILE_bufsiz(fp).
  7304.  
  7305. =item C<stdio_cnt>
  7306.  
  7307. From F<d_stdstdio.U>:
  7308.  
  7309. This variable defines how, given a C<FILE> pointer, fp, to access the
  7310. _cnt field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7311. be used to define the macro FILE_cnt(fp).
  7312.  
  7313. =item C<stdio_filbuf>
  7314.  
  7315. From F<d_stdstdio.U>:
  7316.  
  7317. This variable defines how, given a C<FILE> pointer, fp, to tell
  7318. stdio to refill its internal buffers (?).  This will
  7319. be used to define the macro FILE_filbuf(fp).
  7320.  
  7321. =item C<stdio_ptr>
  7322.  
  7323. From F<d_stdstdio.U>:
  7324.  
  7325. This variable defines how, given a C<FILE> pointer, fp, to access the
  7326. _ptr field (or equivalent) of F<stdio.h>'s C<FILE> structure.  This will
  7327. be used to define the macro FILE_ptr(fp).
  7328.  
  7329. =item C<stdio_stream_array>
  7330.  
  7331. From F<stdio_streams.U>:
  7332.  
  7333. This variable tells the name of the array holding the stdio streams.
  7334. Usual values include _iob, __iob, and __sF.
  7335.  
  7336. =item C<strerror_r_proto>
  7337.  
  7338. From F<d_strerror_r.U>:
  7339.  
  7340. This variable encodes the prototype of strerror_r.
  7341. It is zero if d_strerror_r is undef, and one of the
  7342. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_strerror_r
  7343. is defined.
  7344.  
  7345. =item C<strings>
  7346.  
  7347. From F<i_string.U>:
  7348.  
  7349. This variable holds the full path of the string header that will be
  7350. used. Typically F</usr/include/string.h> or F</usr/include/strings.h>.
  7351.  
  7352. =item C<submit>
  7353.  
  7354. From F<Loc.U>:
  7355.  
  7356. This variable is defined but not used by Configure.
  7357. The value is a plain '' and is not useful.
  7358.  
  7359. =item C<subversion>
  7360.  
  7361. From F<patchlevel.U>:
  7362.  
  7363. The subversion level of this package.
  7364. The value of subversion comes from the F<patchlevel.h> file.
  7365. In a version number such as 5.6.1, this is the C<1>.
  7366. In F<patchlevel.h>, this is referred to as C<PERL_SUBVERSION>.
  7367. This is unique to perl.
  7368.  
  7369. =item C<sysman>
  7370.  
  7371. From F<sysman.U>:
  7372.  
  7373. This variable holds the place where the manual is located on this
  7374. system. It is not the place where the user wants to put his manual
  7375. pages. Rather it is the place where Configure may look to find manual
  7376. for unix commands (section 1 of the manual usually). See mansrc.
  7377.  
  7378. =back
  7379.  
  7380. =head2 t
  7381.  
  7382. =over 4
  7383.  
  7384. =item C<tail>
  7385.  
  7386. From F<Loc.U>:
  7387.  
  7388. This variable is defined but not used by Configure.
  7389. The value is a plain '' and is not useful.
  7390.  
  7391. =item C<tar>
  7392.  
  7393. From F<Loc.U>:
  7394.  
  7395. This variable is defined but not used by Configure.
  7396. The value is a plain '' and is not useful.
  7397.  
  7398. =item C<targetarch>
  7399.  
  7400. From F<Cross.U>:
  7401.  
  7402. If cross-compiling, this variable contains the target architecture.
  7403. If not, this will be empty.
  7404.  
  7405. =item C<tbl>
  7406.  
  7407. From F<Loc.U>:
  7408.  
  7409. This variable is defined but not used by Configure.
  7410. The value is a plain '' and is not useful.
  7411.  
  7412. =item C<tee>
  7413.  
  7414. From F<Loc.U>:
  7415.  
  7416. This variable is defined but not used by Configure.
  7417. The value is a plain '' and is not useful.
  7418.  
  7419. =item C<test>
  7420.  
  7421. From F<Loc.U>:
  7422.  
  7423. This variable is used internally by Configure to determine the
  7424. full pathname (if any) of the test program.  After Configure runs,
  7425. the value is reset to a plain C<test> and is not useful.
  7426.  
  7427. =item C<timeincl>
  7428.  
  7429. From F<i_time.U>:
  7430.  
  7431. This variable holds the full path of the included time header(s).
  7432.  
  7433. =item C<timetype>
  7434.  
  7435. From F<d_time.U>:
  7436.  
  7437. This variable holds the type returned by time(). It can be long,
  7438. or time_t on C<BSD> sites (in which case <sys/types.h> should be
  7439. included). Anyway, the type Time_t should be used.
  7440.  
  7441. =item C<tmpnam_r_proto>
  7442.  
  7443. From F<d_tmpnam_r.U>:
  7444.  
  7445. This variable encodes the prototype of tmpnam_r.
  7446. It is zero if d_tmpnam_r is undef, and one of the
  7447. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_tmpnam_r
  7448. is defined.
  7449.  
  7450. =item C<to>
  7451.  
  7452. From F<Cross.U>:
  7453.  
  7454. This variable contains the command used by Configure
  7455. to copy to from the target host.  Useful and available
  7456. only during Perl build.
  7457. The string C<:> if not cross-compiling.
  7458.  
  7459. =item C<touch>
  7460.  
  7461. From F<Loc.U>:
  7462.  
  7463. This variable is used internally by Configure to determine the
  7464. full pathname (if any) of the touch program.  After Configure runs,
  7465. the value is reset to a plain C<touch> and is not useful.
  7466.  
  7467. =item C<tr>
  7468.  
  7469. From F<Loc.U>:
  7470.  
  7471. This variable is used internally by Configure to determine the
  7472. full pathname (if any) of the tr program.  After Configure runs,
  7473. the value is reset to a plain C<tr> and is not useful.
  7474.  
  7475. =item C<trnl>
  7476.  
  7477. From F<trnl.U>:
  7478.  
  7479. This variable contains the value to be passed to the tr(1)
  7480. command to transliterate a newline.  Typical values are
  7481. C<\012> and C<\n>.  This is needed for C<EBCDIC> systems where
  7482. newline is not necessarily C<\012>.
  7483.  
  7484. =item C<troff>
  7485.  
  7486. From F<Loc.U>:
  7487.  
  7488. This variable is defined but not used by Configure.
  7489. The value is a plain '' and is not useful.
  7490.  
  7491. =item C<ttyname_r_proto>
  7492.  
  7493. From F<d_ttyname_r.U>:
  7494.  
  7495. This variable encodes the prototype of ttyname_r.
  7496. It is zero if d_ttyname_r is undef, and one of the
  7497. C<REENTRANT_PROTO_T_ABC> macros of F<reentr.h> if d_ttyname_r
  7498. is defined.
  7499.  
  7500. =back
  7501.  
  7502. =head2 u
  7503.  
  7504. =over 4
  7505.  
  7506. =item C<u16size>
  7507.  
  7508. From F<perlxv.U>:
  7509.  
  7510. This variable is the size of an U16 in bytes.
  7511.  
  7512. =item C<u16type>
  7513.  
  7514. From F<perlxv.U>:
  7515.  
  7516. This variable contains the C type used for Perl's U16.
  7517.  
  7518. =item C<u32size>
  7519.  
  7520. From F<perlxv.U>:
  7521.  
  7522. This variable is the size of an U32 in bytes.
  7523.  
  7524. =item C<u32type>
  7525.  
  7526. From F<perlxv.U>:
  7527.  
  7528. This variable contains the C type used for Perl's U32.
  7529.  
  7530. =item C<u64size>
  7531.  
  7532. From F<perlxv.U>:
  7533.  
  7534. This variable is the size of an U64 in bytes.
  7535.  
  7536. =item C<u64type>
  7537.  
  7538. From F<perlxv.U>:
  7539.  
  7540. This variable contains the C type used for Perl's U64.
  7541.  
  7542. =item C<u8size>
  7543.  
  7544. From F<perlxv.U>:
  7545.  
  7546. This variable is the size of an U8 in bytes.
  7547.  
  7548. =item C<u8type>
  7549.  
  7550. From F<perlxv.U>:
  7551.  
  7552. This variable contains the C type used for Perl's U8.
  7553.  
  7554. =item C<uidformat>
  7555.  
  7556. From F<uidf.U>:
  7557.  
  7558. This variable contains the format string used for printing a Uid_t.
  7559.  
  7560. =item C<uidsign>
  7561.  
  7562. From F<uidsign.U>:
  7563.  
  7564. This variable contains the signedness of a uidtype.
  7565. 1 for unsigned, -1 for signed.
  7566.  
  7567. =item C<uidsize>
  7568.  
  7569. From F<uidsize.U>:
  7570.  
  7571. This variable contains the size of a uidtype in bytes.
  7572.  
  7573. =item C<uidtype>
  7574.  
  7575. From F<uidtype.U>:
  7576.  
  7577. This variable defines Uid_t to be something like uid_t, int, 
  7578. ushort, or whatever type is used to declare user ids in the kernel.
  7579.  
  7580. =item C<uname>
  7581.  
  7582. From F<Loc.U>:
  7583.  
  7584. This variable is used internally by Configure to determine the
  7585. full pathname (if any) of the uname program.  After Configure runs,
  7586. the value is reset to a plain C<uname> and is not useful.
  7587.  
  7588. =item C<uniq>
  7589.  
  7590. From F<Loc.U>:
  7591.  
  7592. This variable is used internally by Configure to determine the
  7593. full pathname (if any) of the uniq program.  After Configure runs,
  7594. the value is reset to a plain C<uniq> and is not useful.
  7595.  
  7596. =item C<uquadtype>
  7597.  
  7598. From F<quadtype.U>:
  7599.  
  7600. This variable defines Uquad_t to be something like unsigned long,
  7601. unsigned int, unsigned long long, uint64_t, or whatever type is
  7602. used for 64-bit integers.
  7603.  
  7604. =item C<use5005threads>
  7605.  
  7606. From F<usethreads.U>:
  7607.  
  7608. This variable conditionally defines the USE_5005THREADS symbol,
  7609. and indicates that Perl should be built to use the 5.005-based
  7610. threading implementation.
  7611.  
  7612. =item C<use64bitall>
  7613.  
  7614. From F<use64bits.U>:
  7615.  
  7616. This variable conditionally defines the USE_64_BIT_ALL symbol,
  7617. and indicates that 64-bit integer types should be used
  7618. when available.  The maximal possible
  7619. 64-bitness is employed: LP64 or ILP64, meaning that you will
  7620. be able to use more than 2 gigabytes of memory.  This mode is
  7621. even more binary incompatible than USE_64_BIT_INT. You may not
  7622. be able to run the resulting executable in a 32-bit C<CPU> at all or
  7623. you may need at least to reboot your C<OS> to 64-bit mode.
  7624.  
  7625. =item C<use64bitint>
  7626.  
  7627. From F<use64bits.U>:
  7628.  
  7629. This variable conditionally defines the USE_64_BIT_INT symbol,
  7630. and indicates that 64-bit integer types should be used
  7631. when available.  The minimal possible 64-bitness
  7632. is employed, just enough to get 64-bit integers into Perl.
  7633. This may mean using for example "long longs", while your memory
  7634. may still be limited to 2 gigabytes.
  7635.  
  7636. =item C<usecrosscompile>
  7637.  
  7638. From F<Cross.U>:
  7639.  
  7640. This variable conditionally defines the C<USE_CROSS_COMPILE> symbol,
  7641. and indicates that Perl has been cross-compiled.
  7642.  
  7643. =item C<usedl>
  7644.  
  7645. From F<dlsrc.U>:
  7646.  
  7647. This variable indicates if the system supports dynamic
  7648. loading of some sort.  See also dlsrc and dlobj.
  7649.  
  7650. =item C<usefaststdio>
  7651.  
  7652. From F<usefaststdio.U>:
  7653.  
  7654. This variable conditionally defines the C<USE_FAST_STDIO> symbol,
  7655. and indicates that Perl should be built to use C<fast stdio>.
  7656. Defaults to define in Perls 5.8 and earlier, to undef later.
  7657.  
  7658. =item C<useithreads>
  7659.  
  7660. From F<usethreads.U>:
  7661.  
  7662. This variable conditionally defines the C<USE_ITHREADS> symbol,
  7663. and indicates that Perl should be built to use the interpreter-based
  7664. threading implementation.
  7665.  
  7666. =item C<uselargefiles>
  7667.  
  7668. From F<uselfs.U>:
  7669.  
  7670. This variable conditionally defines the C<USE_LARGE_FILES> symbol,
  7671. and indicates that large file interfaces should be used when
  7672. available.
  7673.  
  7674. =item C<uselongdouble>
  7675.  
  7676. From F<uselongdbl.U>:
  7677.  
  7678. This variable conditionally defines the C<USE_LONG_DOUBLE> symbol,
  7679. and indicates that long doubles should be used when available.
  7680.  
  7681. =item C<usemallocwrap>
  7682.  
  7683. From F<mallocsrc.U>:
  7684.  
  7685. This variable contains y if we are wrapping malloc to prevent
  7686. integer overflow during size calculations.
  7687.  
  7688. =item C<usemorebits>
  7689.  
  7690. From F<usemorebits.U>:
  7691.  
  7692. This variable conditionally defines the C<USE_MORE_BITS> symbol,
  7693. and indicates that explicit 64-bit interfaces and long doubles
  7694. should be used when available.
  7695.  
  7696. =item C<usemultiplicity>
  7697.  
  7698. From F<usemultiplicity.U>:
  7699.  
  7700. This variable conditionally defines the C<MULTIPLICITY> symbol,
  7701. and indicates that Perl should be built to use multiplicity.
  7702.  
  7703. =item C<usemymalloc>
  7704.  
  7705. From F<mallocsrc.U>:
  7706.  
  7707. This variable contains y if the malloc that comes with this package
  7708. is desired over the system's version of malloc.  People often include
  7709. special versions of malloc for effiency, but such versions are often
  7710. less portable.  See also mallocsrc and mallocobj.
  7711. If this is C<y>, then -lmalloc is removed from $libs.
  7712.  
  7713. =item C<usenm>
  7714.  
  7715. From F<usenm.U>:
  7716.  
  7717. This variable contains C<true> or C<false> depending whether the
  7718. nm extraction is wanted or not.
  7719.  
  7720. =item C<useopcode>
  7721.  
  7722. From F<Extensions.U>:
  7723.  
  7724. This variable holds either C<true> or C<false> to indicate
  7725. whether the Opcode extension should be used.  The sole
  7726. use for this currently is to allow an easy mechanism
  7727. for users to skip the Opcode extension from the Configure
  7728. command line.
  7729.  
  7730. =item C<useperlio>
  7731.  
  7732. From F<useperlio.U>:
  7733.  
  7734. This variable conditionally defines the C<USE_PERLIO> symbol,
  7735. and indicates that the PerlIO abstraction should be
  7736. used throughout.
  7737.  
  7738. =item C<useposix>
  7739.  
  7740. From F<Extensions.U>:
  7741.  
  7742. This variable holds either C<true> or C<false> to indicate
  7743. whether the C<POSIX> extension should be used.  The sole
  7744. use for this currently is to allow an easy mechanism
  7745. for hints files to indicate that C<POSIX> will not compile
  7746. on a particular system.
  7747.  
  7748. =item C<usereentrant>
  7749.  
  7750. From F<usethreads.U>:
  7751.  
  7752. This variable conditionally defines the C<USE_REENTRANT_API> symbol,
  7753. which indicates that the thread code may try to use the various
  7754. _r versions of library functions.  This is only potentially
  7755. meaningful if usethreads is set and is very experimental, it is
  7756. not even prompted for.
  7757.  
  7758. =item C<usesfio>
  7759.  
  7760. From F<d_sfio.U>:
  7761.  
  7762. This variable is set to true when the user agrees to use sfio.
  7763. It is set to false when sfio is not available or when the user
  7764. explicitely requests not to use sfio.  It is here primarily so
  7765. that command-line settings can override the auto-detection of
  7766. d_sfio without running into a "WHOA THERE".
  7767.  
  7768. =item C<useshrplib>
  7769.  
  7770. From F<libperl.U>:
  7771.  
  7772. This variable is set to C<true> if the user wishes
  7773. to build a shared libperl, and C<false> otherwise.
  7774.  
  7775. =item C<usesocks>
  7776.  
  7777. From F<usesocks.U>:
  7778.  
  7779. This variable conditionally defines the C<USE_SOCKS> symbol,
  7780. and indicates that Perl should be built to use C<SOCKS>.
  7781.  
  7782. =item C<usethreads>
  7783.  
  7784. From F<usethreads.U>:
  7785.  
  7786. This variable conditionally defines the C<USE_THREADS> symbol,
  7787. and indicates that Perl should be built to use threads.
  7788.  
  7789. =item C<usevendorprefix>
  7790.  
  7791. From F<vendorprefix.U>:
  7792.  
  7793. This variable tells whether the vendorprefix
  7794. and consequently other vendor* paths are in use.
  7795.  
  7796. =item C<usevfork>
  7797.  
  7798. From F<d_vfork.U>:
  7799.  
  7800. This variable is set to true when the user accepts to use vfork.
  7801. It is set to false when no vfork is available or when the user
  7802. explicitely requests not to use vfork.
  7803.  
  7804. =item C<usrinc>
  7805.  
  7806. From F<usrinc.U>:
  7807.  
  7808. This variable holds the path of the include files, which is
  7809. usually F</usr/include>. It is mainly used by other Configure units.
  7810.  
  7811. =item C<uuname>
  7812.  
  7813. From F<Loc.U>:
  7814.  
  7815. This variable is defined but not used by Configure.
  7816. The value is a plain '' and is not useful.
  7817.  
  7818. =item C<uvoformat>
  7819.  
  7820. From F<perlxvf.U>:
  7821.  
  7822. This variable contains the format string used for printing
  7823. a Perl C<UV> as an unsigned octal integer. 
  7824.  
  7825. =item C<uvsize>
  7826.  
  7827. From F<perlxv.U>:
  7828.  
  7829. This variable is the size of a C<UV> in bytes.
  7830.  
  7831. =item C<uvtype>
  7832.  
  7833. From F<perlxv.U>:
  7834.  
  7835. This variable contains the C type used for Perl's C<UV>.
  7836.  
  7837. =item C<uvuformat>
  7838.  
  7839. From F<perlxvf.U>:
  7840.  
  7841. This variable contains the format string used for printing
  7842. a Perl C<UV> as an unsigned decimal integer. 
  7843.  
  7844. =item C<uvxformat>
  7845.  
  7846. From F<perlxvf.U>:
  7847.  
  7848. This variable contains the format string used for printing
  7849. a Perl C<UV> as an unsigned hexadecimal integer in lowercase abcdef.
  7850.  
  7851. =item C<uvXUformat>
  7852.  
  7853. From F<perlxvf.U>:
  7854.  
  7855. This variable contains the format string used for printing
  7856. a Perl C<UV> as an unsigned hexadecimal integer in uppercase C<ABCDEF>.
  7857.  
  7858. =back
  7859.  
  7860. =head2 v
  7861.  
  7862. =over 4
  7863.  
  7864. =item C<vendorarch>
  7865.  
  7866. From F<vendorarch.U>:
  7867.  
  7868. This variable contains the value of the C<PERL_VENDORARCH> symbol.
  7869. It may have a F<~> on the front. 
  7870. The standard distribution will put nothing in this directory.
  7871. Vendors who distribute perl may wish to place their own
  7872. architecture-dependent modules and extensions in this directory with
  7873. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7874. or equivalent.  See C<INSTALL> for details.
  7875.  
  7876. =item C<vendorarchexp>
  7877.  
  7878. From F<vendorarch.U>:
  7879.  
  7880. This variable is the F<~name> expanded version of vendorarch, so that you
  7881. may use it directly in Makefiles or shell scripts.
  7882.  
  7883. =item C<vendorbin>
  7884.  
  7885. From F<vendorbin.U>:
  7886.  
  7887. This variable contains the eventual value of the C<VENDORBIN> symbol.
  7888. It may have a F<~> on the front.
  7889. The standard distribution will put nothing in this directory.
  7890. Vendors who distribute perl may wish to place additional
  7891. binaries in this directory with
  7892. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7893. or equivalent.  See C<INSTALL> for details.
  7894.  
  7895. =item C<vendorbinexp>
  7896.  
  7897. From F<vendorbin.U>:
  7898.  
  7899. This variable is the F<~name> expanded version of vendorbin, so that you
  7900. may use it directly in Makefiles or shell scripts.
  7901.  
  7902. =item C<vendorhtml1dir>
  7903.  
  7904. From F<vendorhtml1dir.U>:
  7905.  
  7906. This variable contains the name of the directory for html 
  7907. pages.  It may have a F<~> on the front.
  7908. The standard distribution will put nothing in this directory.
  7909. Vendors who distribute perl may wish to place their own
  7910. html pages in this directory with
  7911. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7912. or equivalent.  See C<INSTALL> for details.
  7913.  
  7914. =item C<vendorhtml1direxp>
  7915.  
  7916. From F<vendorhtml1dir.U>:
  7917.  
  7918. This variable is the F<~name> expanded version of vendorhtml1dir, so that you
  7919. may use it directly in Makefiles or shell scripts.
  7920.  
  7921. =item C<vendorhtml3dir>
  7922.  
  7923. From F<vendorhtml3dir.U>:
  7924.  
  7925. This variable contains the name of the directory for html 
  7926. library pages.  It may have a F<~> on the front.
  7927. The standard distribution will put nothing in this directory.
  7928. Vendors who distribute perl may wish to place their own
  7929. html pages for modules and extensions in this directory with
  7930. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7931. or equivalent.  See C<INSTALL> for details.
  7932.  
  7933. =item C<vendorhtml3direxp>
  7934.  
  7935. From F<vendorhtml3dir.U>:
  7936.  
  7937. This variable is the F<~name> expanded version of vendorhtml3dir, so that you
  7938. may use it directly in Makefiles or shell scripts.
  7939.  
  7940. =item C<vendorlib>
  7941.  
  7942. From F<vendorlib.U>:
  7943.  
  7944. This variable contains the eventual value of the C<VENDORLIB> symbol,
  7945. which is the name of the private library for this package.
  7946. The standard distribution will put nothing in this directory.
  7947. Vendors who distribute perl may wish to place their own
  7948. modules in this directory with
  7949. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7950. or equivalent.  See C<INSTALL> for details.
  7951.  
  7952. =item C<vendorlib_stem>
  7953.  
  7954. From F<vendorlib.U>:
  7955.  
  7956. This variable is $vendorlibexp with any trailing version-specific component
  7957. removed.  The elements in inc_version_list (F<inc_version_list.U>) can
  7958. be tacked onto this variable to generate a list of directories to search.
  7959.  
  7960. =item C<vendorlibexp>
  7961.  
  7962. From F<vendorlib.U>:
  7963.  
  7964. This variable is the F<~name> expanded version of vendorlib, so that you
  7965. may use it directly in Makefiles or shell scripts.
  7966.  
  7967. =item C<vendorman1dir>
  7968.  
  7969. From F<vendorman1dir.U>:
  7970.  
  7971. This variable contains the name of the directory for man1 
  7972. pages.  It may have a F<~> on the front.
  7973. The standard distribution will put nothing in this directory.
  7974. Vendors who distribute perl may wish to place their own
  7975. man1 pages in this directory with
  7976. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7977. or equivalent.  See C<INSTALL> for details.
  7978.  
  7979. =item C<vendorman1direxp>
  7980.  
  7981. From F<vendorman1dir.U>:
  7982.  
  7983. This variable is the F<~name> expanded version of vendorman1dir, so that you
  7984. may use it directly in Makefiles or shell scripts.
  7985.  
  7986. =item C<vendorman3dir>
  7987.  
  7988. From F<vendorman3dir.U>:
  7989.  
  7990. This variable contains the name of the directory for man3 
  7991. pages.  It may have a F<~> on the front.
  7992. The standard distribution will put nothing in this directory.
  7993. Vendors who distribute perl may wish to place their own
  7994. man3 pages in this directory with
  7995. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  7996. or equivalent.  See C<INSTALL> for details.
  7997.  
  7998. =item C<vendorman3direxp>
  7999.  
  8000. From F<vendorman3dir.U>:
  8001.  
  8002. This variable is the F<~name> expanded version of vendorman3dir, so that you
  8003. may use it directly in Makefiles or shell scripts.
  8004.  
  8005. =item C<vendorprefix>
  8006.  
  8007. From F<vendorprefix.U>:
  8008.  
  8009. This variable holds the full absolute path of the directory below
  8010. which the vendor will install add-on packages.
  8011. See C<INSTALL> for usage and examples.
  8012.  
  8013. =item C<vendorprefixexp>
  8014.  
  8015. From F<vendorprefix.U>:
  8016.  
  8017. This variable holds the full absolute path of the directory below
  8018. which the vendor will install add-on packages.  Derived from vendorprefix.
  8019.  
  8020. =item C<vendorscript>
  8021.  
  8022. From F<vendorscript.U>:
  8023.  
  8024. This variable contains the eventual value of the C<VENDORSCRIPT> symbol.
  8025. It may have a F<~> on the front.
  8026. The standard distribution will put nothing in this directory.
  8027. Vendors who distribute perl may wish to place additional
  8028. executable scripts in this directory with
  8029. MakeMaker F<Makefile.PL> C<INSTALLDIRS>=vendor 
  8030. or equivalent.  See C<INSTALL> for details.
  8031.  
  8032. =item C<vendorscriptexp>
  8033.  
  8034. From F<vendorscript.U>:
  8035.  
  8036. This variable is the F<~name> expanded version of vendorscript, so that you
  8037. may use it directly in Makefiles or shell scripts.
  8038.  
  8039. =item C<version>
  8040.  
  8041. From F<patchlevel.U>:
  8042.  
  8043. The full version number of this package, such as 5.6.1 (or 5_6_1).
  8044. This combines revision, patchlevel, and subversion to get the
  8045. full version number, including any possible subversions.
  8046. This is suitable for use as a directory name, and hence is
  8047. filesystem dependent.
  8048.  
  8049. =item C<version_patchlevel_string>
  8050.  
  8051. From F<patchlevel.U>:
  8052.  
  8053. This is a string combining version, subversion and
  8054. perl_patchlevel (if perl_patchlevel is non-zero).  
  8055. It is typically something like 
  8056. 'version 7 subversion 1'  or
  8057. 'version 7 subversion 1 patchlevel 11224'
  8058. It is computed here to avoid duplication of code in F<myconfig.SH>
  8059. and F<lib/Config.pm>. 
  8060.  
  8061. =item C<versiononly>
  8062.  
  8063. From F<versiononly.U>:
  8064.  
  8065. If set, this symbol indicates that only the version-specific
  8066. components of a perl installation should be installed.
  8067. This may be useful for making a test installation of a new
  8068. version without disturbing the existing installation.
  8069. Setting versiononly is equivalent to setting installperl's -v option.
  8070. In particular, the non-versioned scripts and programs such as
  8071. a2p, c2ph, h2xs, pod2*, and perldoc are not installed
  8072. (see C<INSTALL> for a more complete list).  Nor are the man
  8073. pages installed.
  8074. Usually, this is undef.
  8075.  
  8076. =item C<vi>
  8077.  
  8078. From F<Loc.U>:
  8079.  
  8080. This variable is defined but not used by Configure.
  8081. The value is a plain '' and is not useful.
  8082.  
  8083. =item C<voidflags>
  8084.  
  8085. From F<voidflags.U>:
  8086.  
  8087. This variable contains the eventual value of the C<VOIDFLAGS> symbol,
  8088. which indicates how much support of the void type is given by this
  8089. compiler.  See C<VOIDFLAGS> for more info.
  8090.  
  8091. =back
  8092.  
  8093. =head2 x
  8094.  
  8095. =over 4
  8096.  
  8097. =item C<xlibpth>
  8098.  
  8099. From F<libpth.U>:
  8100.  
  8101. This variable holds extra path (space-separated) used to find
  8102. libraries on this platform, for example C<CPU>-specific libraries
  8103. (on multi-C<CPU> platforms) may be listed here.
  8104.  
  8105. =back
  8106.  
  8107. =head2 y
  8108.  
  8109. =over 4
  8110.  
  8111. =item C<yacc>
  8112.  
  8113. From F<yacc.U>:
  8114.  
  8115. This variable holds the name of the compiler compiler we
  8116. want to use in the Makefile. It can be yacc, byacc, or bison -y.
  8117.  
  8118. =item C<yaccflags>
  8119.  
  8120. From F<yacc.U>:
  8121.  
  8122. This variable contains any additional yacc flags desired by the
  8123. user.  It is up to the Makefile to use this.
  8124.  
  8125. =back
  8126.  
  8127. =head2 z
  8128.  
  8129. =over 4
  8130.  
  8131. =item C<zcat>
  8132.  
  8133. From F<Loc.U>:
  8134.  
  8135. This variable is defined but not used by Configure.
  8136. The value is a plain '' and is not useful.
  8137.  
  8138. =item C<zip>
  8139.  
  8140. From F<Loc.U>:
  8141.  
  8142. This variable is used internally by Configure to determine the
  8143. full pathname (if any) of the zip program.  After Configure runs,
  8144. the value is reset to a plain C<zip> and is not useful.
  8145.  
  8146.  
  8147. =back
  8148.  
  8149. =head1 NOTE
  8150.  
  8151. This module contains a good example of how to use tie to implement a
  8152. cache and an example of how to make a tied variable readonly to those
  8153. outside of it.
  8154.  
  8155. =cut
  8156.  
  8157.